bimplus-webclient 0.1.56 → 0.1.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bimplus-webclient",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.57",
|
|
4
4
|
"description": "bim+ web client",
|
|
5
5
|
"types": "types/bimplus-webclient.d.ts",
|
|
6
6
|
"keywords": [
|
|
@@ -19,14 +19,16 @@
|
|
|
19
19
|
"eslint": "eslint src/** test/**",
|
|
20
20
|
"build": "npm run eslint && webpack --config webpack.dev.js",
|
|
21
21
|
"build-prod": "npm run eslint && webpack --config webpack.prod.js",
|
|
22
|
-
"
|
|
23
|
-
"
|
|
22
|
+
"pub": "npm run build-prod && npm publish",
|
|
23
|
+
"pub-tag": "npm run build-prod && npm publish --tag dev",
|
|
24
|
+
"bump": "npm run bump:patch",
|
|
25
|
+
"bump:patch": "npm version patch --no-git-tag-version",
|
|
24
26
|
"npm-pack": "npm run build-prod && npm pack",
|
|
25
27
|
"lint-doc": "documentation lint ./src/*.js",
|
|
26
|
-
"build-doc": "
|
|
27
|
-
"build-docMd": "
|
|
28
|
-
"build-docConf": "
|
|
29
|
-
"build-docAll": "
|
|
28
|
+
"build-doc": "npm run lint-doc && documentation build ./src/*.js --config doc_config.yml -f html -o ./documentation",
|
|
29
|
+
"build-docMd": "npm run lint-doc && documentation build ./src/*.js -f md -o ./documentation/Bimplus_WebClient_doc.md",
|
|
30
|
+
"build-docConf": "npm run build-docMd && cd ./documentation && python convert_to_confluence_md.py",
|
|
31
|
+
"build-docAll": "npm run build-doc && npm run build-docConf && npm run build-docMd && npm run build-doc",
|
|
30
32
|
"test": "node node_modules/karma/bin/karma start",
|
|
31
33
|
"test-chrome": "npm run test -- --single-run=true --browsers ChromeExt karma.conf.js",
|
|
32
34
|
"test-chrome-headless": "npm run test -- --single-run=true --browsers ChromeHeadless karma.conf.js",
|