Skip to content

Commit 763d872

Browse files
authored
Upgrade NPM packages, including [email protected] (open-telemetry#1241)
1 parent 9cb2b09 commit 763d872

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ GET_LINK_CHECKER_IF_NEEDED=get-link-checker
1111
endif
1212
endif
1313

14+
default:
15+
@echo "Make what? Target list:\n"
16+
@make -rpn | grep '^[a-z]\S*:' | sed 's/://' | sort
17+
1418
check-links: $(GET_LINK_CHECKER_IF_NEEDED)
1519
$(HTMLTEST) $(HTMLTEST_ARGS)
1620

package.json

+12-7
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"_build": "hugo --cleanDestinationDir -e dev -DFE",
1010
"_check-links": "make check-links",
1111
"_get:no": "echo SKIPPING get operation",
12-
"_get:submodule": "set -x && git submodule update --init ${DEPTH:- --depth 1}",
1312
"_get:submodule:non-lang": "npm run _get:submodule -- content-modules/opentelemetry-specification themes/docsy",
13+
"_get:submodule": "set -x && git submodule update --init ${DEPTH:- --depth 1}",
1414
"_prebuild": "run-s get:submodule cp:spec",
1515
"_prepare:docsy": "cd themes/docsy && npm install",
1616
"_serve:hugo": "hugo serve -DFE --minify",
@@ -19,6 +19,7 @@
1919
"build:preview": "set -x && npm run _build -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
2020
"build:production": "hugo --cleanDestinationDir --minify",
2121
"build": "npm run _build",
22+
"cd:public": "cd public &&",
2223
"check-links:all": "HTMLTEST_ARGS= npm run _check-links",
2324
"check-links": "npm run _check-links",
2425
"clean": "make clean",
@@ -40,16 +41,20 @@
4041
"serve:hugo": "npm run _serve:hugo",
4142
"serve": "npm run _serve",
4243
"test": "npm run check-links",
43-
"update:submodule": "set -x && git submodule update --remote ${DEPTH:- --depth 1}",
44-
"update:submodule:lang": "run-s update:submodule _get:submodule:non-lang"
44+
"update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest",
45+
"update:pkg:hugo+": "npm install --save-dev autoprefixer@latest postcss@latest postcss-cli@latest",
46+
"update:pkg:netlify": "npm install --save-dev netlify-cli@latest",
47+
"update:pkg:other": "npm install --save-dev npm-run-all@latest",
48+
"update:submodule:lang": "run-s update:submodule _get:submodule:non-lang",
49+
"update:submodule": "set -x && git submodule update --remote ${DEPTH:- --depth 1}"
4550
},
4651
"private": true,
4752
"devDependencies": {
48-
"autoprefixer": "^10.4.2",
49-
"hugo-extended": "0.93.2",
50-
"netlify-cli": "^9.12.3",
53+
"autoprefixer": "^10.4.4",
54+
"hugo-extended": "0.96.0",
55+
"netlify-cli": "^9.13.5",
5156
"npm-run-all": "^4.1.5",
52-
"postcss": "^8.4.7",
57+
"postcss": "^8.4.12",
5358
"postcss-cli": "^9.1.0"
5459
},
5560
"dependencies": {

0 commit comments

Comments
 (0)