Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/docsy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Chalin <chalin@users.noreply.github.com>2022-08-18 12:02:38 +0300
committerGitHub <noreply@github.com>2022-08-18 12:02:38 +0300
commitbed54d3cefc1a53bfbb3e3b42e5a2f2f01b27e44 (patch)
tree84bb7136240596c9189e5a82a94d8b7e52c65c08
parent1cc1ca9ae1663e478ef41bda90ee187c07d69c87 (diff)
NPM: pin dep versions and add update script (#1181)
-rw-r--r--package.json8
1 files changed, 5 insertions, 3 deletions
diff --git a/package.json b/package.json
index e3a8f0b..a5d87e6 100644
--- a/package.json
+++ b/package.json
@@ -13,14 +13,16 @@
"docs-install": "npm run _cd:docs -- npm install",
"get:submodule": "set -x && git submodule update --init ${DEPTH:- --depth 1}",
"serve": "npm run cd:docs serve",
- "update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest"
+ "update:pkg:hugo": "npm install --save-exact -D hugo-extended@latest",
+ "update:pkg:dep": "npm install --save-exact @fortawesome/fontawesome-free@latest bootstrap@4"
},
+ "cspell": "cSpell:ignore docsy userguide fortawesome fontawesome ",
"prettier": {
"proseWrap": "always"
},
"dependencies": {
- "@fortawesome/fontawesome-free": "^6.1.1",
- "bootstrap": "^4.6.1"
+ "@fortawesome/fontawesome-free": "6.1.1",
+ "bootstrap": "4.6.1"
},
"devDependencies": {
"hugo-extended": "0.101.0"