bimplus-renderer 1.8.35 → 1.8.36-webpack1.1
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/dist/bimplus-renderer.js +1 -1
- package/eslint.config.mjs +16 -21
- package/package.json +8 -7
package/eslint.config.mjs
CHANGED
|
@@ -3,36 +3,31 @@ import js from "@eslint/js";
|
|
|
3
3
|
|
|
4
4
|
export default [
|
|
5
5
|
js.configs.recommended,
|
|
6
|
-
|
|
7
|
-
{
|
|
8
|
-
files: ["src/**/*", "test/**/*"],
|
|
9
|
-
rules: {
|
|
10
|
-
semi: ["warn", "always"], // check for missing semicolons at line ends
|
|
11
|
-
},
|
|
12
|
-
},
|
|
6
|
+
|
|
13
7
|
{
|
|
14
|
-
ignores: [
|
|
15
|
-
"./recordings/*", // don't check *.har recordings
|
|
16
|
-
"src/compiledWorkers/*", // don't check compiled worker files
|
|
17
|
-
],
|
|
8
|
+
ignores: ["recordings/*", "src/compiledWorkers/*"],
|
|
18
9
|
},
|
|
10
|
+
|
|
19
11
|
{
|
|
12
|
+
files: ["src/**/*", "test/**/*"],
|
|
20
13
|
languageOptions: {
|
|
21
14
|
ecmaVersion: 2022,
|
|
22
15
|
sourceType: "module",
|
|
23
16
|
globals: {
|
|
24
17
|
...globals.browser,
|
|
25
|
-
$:
|
|
26
|
-
jQuery:
|
|
27
|
-
QUnit:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
__dirname: true,
|
|
18
|
+
$: "readonly",
|
|
19
|
+
jQuery: "readonly",
|
|
20
|
+
QUnit: "readonly",
|
|
21
|
+
define: "readonly",
|
|
22
|
+
require: "readonly",
|
|
23
|
+
module: "readonly",
|
|
24
|
+
__dirname: "readonly",
|
|
33
25
|
},
|
|
34
26
|
},
|
|
35
|
-
|
|
36
|
-
|
|
27
|
+
rules: {
|
|
28
|
+
semi: ["warn", "always"],
|
|
29
|
+
"no-useless-assignment": "off",
|
|
30
|
+
"preserve-caught-error": "off",
|
|
31
|
+
},
|
|
37
32
|
},
|
|
38
33
|
];
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
" set there the full version string! ": "",
|
|
7
7
|
" e.g.: semverRange: '1.8.20-my-tag-name-01' ": "",
|
|
8
8
|
"================================================================================================-": "",
|
|
9
|
-
"version": "1.8.
|
|
9
|
+
"version": "1.8.36-webpack1.1",
|
|
10
10
|
"description": "bim+ renderer",
|
|
11
11
|
"types": "types/bimplus-renderer.d.ts",
|
|
12
12
|
"keywords": [
|
|
@@ -113,6 +113,7 @@
|
|
|
113
113
|
"@babel/plugin-transform-function-name": "^7.25.9",
|
|
114
114
|
"@babel/plugin-transform-runtime": "^7.29.0",
|
|
115
115
|
"@babel/preset-env": "^7.29.0",
|
|
116
|
+
"@eslint/js": "^10.0.1",
|
|
116
117
|
"@pollyjs/adapter-xhr": "^6.0.6",
|
|
117
118
|
"@pollyjs/cli": "^6.0.6",
|
|
118
119
|
"@pollyjs/core": "^6.0.6",
|
|
@@ -121,13 +122,13 @@
|
|
|
121
122
|
"babel-loader": "^10.0.0",
|
|
122
123
|
"bimplus-websdk": "^1.0.66",
|
|
123
124
|
"clean-webpack-plugin": "^4.0.0",
|
|
124
|
-
"copy-webpack-plugin": "^
|
|
125
|
+
"copy-webpack-plugin": "^14.0.0",
|
|
125
126
|
"coverage-istanbul-loader": "^3.0.5",
|
|
126
|
-
"cpy-cli": "^
|
|
127
|
+
"cpy-cli": "^7.0.0",
|
|
127
128
|
"documentation": "^14.0.3",
|
|
128
|
-
"eslint": "^
|
|
129
|
+
"eslint": "^10.7.0",
|
|
129
130
|
"file-loader": "6.2.0",
|
|
130
|
-
"globals": "17.
|
|
131
|
+
"globals": "17.7.0",
|
|
131
132
|
"karma": "^6.4.4",
|
|
132
133
|
"karma-chrome-launcher": "^3.2.0",
|
|
133
134
|
"karma-coverage-istanbul-reporter": "^3.0.2",
|
|
@@ -140,11 +141,11 @@
|
|
|
140
141
|
"moment-timezone": "^0.6.2",
|
|
141
142
|
"npm-run-all": "4.1.5",
|
|
142
143
|
"object-hash": "^3.0.0",
|
|
143
|
-
"qunit": "^2.
|
|
144
|
+
"qunit": "^2.26.0",
|
|
144
145
|
"raw-loader": "4.0.2",
|
|
145
146
|
"rimraf": "^6.1.3",
|
|
146
147
|
"shader-loader": "1.3.1",
|
|
147
|
-
"terser-webpack-plugin": "^5.
|
|
148
|
+
"terser-webpack-plugin": "^5.6.1",
|
|
148
149
|
"url-loader": "4.1.1",
|
|
149
150
|
"webpack": "^5.105.0",
|
|
150
151
|
"webpack-bundle-analyzer": "^5.2.0",
|