@websolutespa/bom-compiler 0.2.2 → 1.10.0-next.0
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/CHANGELOG.md +6 -0
- package/babel.config.js +4 -4
- package/index.d.ts +1 -4
- package/index.js +2 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
package/babel.config.js
CHANGED
|
@@ -12,15 +12,15 @@ module.exports = {
|
|
|
12
12
|
targets: test ?
|
|
13
13
|
{ node: 'current' } :
|
|
14
14
|
{ browsers: 'defaults, not IE 11' },
|
|
15
|
-
}
|
|
15
|
+
},
|
|
16
16
|
],
|
|
17
17
|
[
|
|
18
18
|
'@babel/preset-react',
|
|
19
19
|
{
|
|
20
|
-
runtime: 'automatic'
|
|
21
|
-
}
|
|
20
|
+
runtime: 'automatic',
|
|
21
|
+
},
|
|
22
22
|
],
|
|
23
|
-
'@babel/preset-typescript'
|
|
23
|
+
'@babel/preset-typescript',
|
|
24
24
|
],
|
|
25
25
|
/*
|
|
26
26
|
plugins: [
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
1
2
|
const spawn = require('cross-spawn');
|
|
2
3
|
const path = require('path');
|
|
3
4
|
const fs = require('fs');
|
|
@@ -46,7 +47,7 @@ function emitDeclaration() {
|
|
|
46
47
|
'tsc',
|
|
47
48
|
['--project', tsConfigPath, '--emitDeclarationOnly'],
|
|
48
49
|
{
|
|
49
|
-
stdio: 'inherit'
|
|
50
|
+
stdio: 'inherit',
|
|
50
51
|
});
|
|
51
52
|
} catch (error) {
|
|
52
53
|
console.log('BomCompiler.emitDeclaration', error);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@websolutespa/bom-compiler",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.10.0-next.0",
|
|
4
4
|
"description": "Compiler helper of the BOM Repository",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bom",
|
|
@@ -25,27 +25,27 @@
|
|
|
25
25
|
"@svgr/rollup": "^8.1.0",
|
|
26
26
|
"babel-loader": "^9.1.3",
|
|
27
27
|
"cross-spawn": "latest",
|
|
28
|
-
"node-sass": "^9.0.0",
|
|
29
28
|
"rimraf": "3.0.2",
|
|
30
29
|
"rollup-plugin-copy": "^3.5.0",
|
|
31
30
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
32
31
|
"rollup-plugin-postcss": "^4.0.2",
|
|
33
32
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
34
33
|
"rollup": "^4.14.1",
|
|
35
|
-
"sass-loader": "^14.1.1"
|
|
34
|
+
"sass-loader": "^14.1.1",
|
|
35
|
+
"sass": "1.54.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"react": ">=
|
|
39
|
-
"react-dom": ">=
|
|
38
|
+
"react": ">= 19.1.0",
|
|
39
|
+
"react-dom": ">= 19.1.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/cross-spawn": "latest",
|
|
43
|
-
"@types/react": "
|
|
44
|
-
"@types/react-dom": "
|
|
43
|
+
"@types/react": "19.1.0",
|
|
44
|
+
"@types/react-dom": "19.1.2",
|
|
45
45
|
"@websolutespa/tsconfig": "*",
|
|
46
|
-
"eslint-config
|
|
47
|
-
"tsup": "^
|
|
48
|
-
"typescript": "
|
|
46
|
+
"@websolutespa/eslint-config": "*",
|
|
47
|
+
"tsup": "^8.5.0",
|
|
48
|
+
"typescript": "5.8.2"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|