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-06-24 16:37:30 +0300
committerGitHub <noreply@github.com>2022-06-24 16:37:30 +0300
commit5d03fd9780d9075b1a23b1112c33b6bb4e5c2159 (patch)
tree43d4968cb2edccc5796cc69e0dbbf1980fbfc40c /userguide
parentb6d85f53e7047fb3aeb3bc887a487c6cf49222cd (diff)
Remove obsolete git-submodule scripts from UG package.json (#1073)
Diffstat (limited to 'userguide')
-rw-r--r--userguide/package.json7
1 files changed, 2 insertions, 5 deletions
diff --git a/userguide/package.json b/userguide/package.json
index af016fe..7f3dab7 100644
--- a/userguide/package.json
+++ b/userguide/package.json
@@ -5,14 +5,11 @@
"_hugo": "hugo --cleanDestinationDir --themesDir ../..",
"_hugo-dev": "npm run _hugo -- -e dev -DFE",
"_serve": "npm run _hugo-dev -- serve",
- "build:preview": "DOCSY_VENDOR=clean npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
- "build:production": "DOCSY_VENDOR=clean npm run _hugo -- --minify",
+ "build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
+ "build:production": "npm run _hugo -- --minify",
"build": "npm run _build",
"clean": "rm -Rf public",
- "clean:vendor": "rm -Rf ../assets/vendor",
- "keep:vendor": "echo Keeping ../assets/vendor",
"make:public": "git init -b main public",
- "pre_hugo": "set -x && npm run ${DOCSY_VENDOR:-keep}:vendor",
"prepare": "cd .. && npm install",
"serve": "npm run _serve"
},