bimplus-webclient 0.1.56 → 0.1.58

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.
Files changed (1) hide show
  1. package/package.json +16 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bimplus-webclient",
3
- "version": "0.1.56",
3
+ "version": "0.1.58",
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
- "yarn-publish": "npm run build-prod && yarn publish",
23
- "yarn-publish-branch": "npm run build-prod && yarn publish --tag",
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": "yarn lint-doc && documentation build ./src/*.js --config doc_config.yml -f html -o ./documentation",
27
- "build-docMd": "yarn lint-doc && documentation build ./src/*.js -f md -o ./documentation/Bimplus_WebClient_doc.md",
28
- "build-docConf": "yarn build-docMd && cd ./documentation && python convert_to_confluence_md.py",
29
- "build-docAll": "yarn build-doc && yarn build-docConf",
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",
@@ -35,14 +37,14 @@
35
37
  "test-watch": "npm run test -- --browsers=ChromeExt --single-run=false --auto-watch"
36
38
  },
37
39
  "devDependencies": {
38
- "@babel/core": "^7.26.7",
39
- "@babel/preset-env": "^7.26.7",
40
- "babel-loader": "^9.2.1",
40
+ "@babel/core": "^7.26.10",
41
+ "@babel/preset-env": "^7.26.9",
42
+ "babel-loader": "^10.0.0",
41
43
  "clean-webpack-plugin": "^4.0.0",
42
44
  "coverage-istanbul-loader": "^3.0.5",
43
45
  "documentation": "^14.0.3",
44
- "eslint": "^9.19.0",
45
- "globals": "15.14.0",
46
+ "eslint": "^9.24.0",
47
+ "globals": "16.0.0",
46
48
  "karma": "^6.4.4",
47
49
  "karma-chrome-launcher": "^3.2.0",
48
50
  "karma-coverage-istanbul-reporter": "^3.0.2",
@@ -50,8 +52,8 @@
50
52
  "karma-qunit": "^4.2.1",
51
53
  "karma-webpack": "5.0.1",
52
54
  "qunit": "^2.24.1",
53
- "terser-webpack-plugin": "^5.3.11",
54
- "webpack": "^5.97.1",
55
+ "terser-webpack-plugin": "^5.3.14",
56
+ "webpack": "^5.99.5",
55
57
  "webpack-cli": "^6.0.1",
56
58
  "webpack-merge": "^6.0.1"
57
59
  },