@websolutespa/bom-compiler 0.2.1 → 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 +43 -31
- package/babel.config.js +4 -4
- package/index.d.ts +1 -4
- package/index.js +2 -1
- package/package.json +56 -56
package/CHANGELOG.md
CHANGED
|
@@ -1,31 +1,43 @@
|
|
|
1
|
-
# @websolutespa/bom-compiler
|
|
2
|
-
|
|
3
|
-
## 0.
|
|
4
|
-
|
|
5
|
-
###
|
|
6
|
-
|
|
7
|
-
- Updating:
|
|
8
|
-
|
|
9
|
-
## 0.2.
|
|
10
|
-
|
|
11
|
-
###
|
|
12
|
-
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
## 0.
|
|
16
|
-
|
|
17
|
-
### Patch Changes
|
|
18
|
-
|
|
19
|
-
-
|
|
20
|
-
|
|
21
|
-
## 0.
|
|
22
|
-
|
|
23
|
-
### Minor Changes
|
|
24
|
-
|
|
25
|
-
-
|
|
26
|
-
|
|
27
|
-
## 0.
|
|
28
|
-
|
|
29
|
-
### Patch Changes
|
|
30
|
-
|
|
31
|
-
-
|
|
1
|
+
# @websolutespa/bom-compiler
|
|
2
|
+
|
|
3
|
+
## 1.10.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Updating: React 19.x, Payload 3.x
|
|
8
|
+
|
|
9
|
+
## 0.2.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Fixing: downgrading eslint to v8.56.0
|
|
14
|
+
|
|
15
|
+
## 0.2.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updating: dependencies
|
|
20
|
+
|
|
21
|
+
## 0.2.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- Updating: next 13.
|
|
26
|
+
|
|
27
|
+
## 0.1.1
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Modified: dependencies.
|
|
32
|
+
|
|
33
|
+
## 0.1.0
|
|
34
|
+
|
|
35
|
+
### Minor Changes
|
|
36
|
+
|
|
37
|
+
- Added: splat routes.
|
|
38
|
+
|
|
39
|
+
## 0.0.1
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- Added: first release.
|
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,56 +1,56 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@websolutespa/bom-compiler",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Compiler helper of the BOM Repository",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"bom",
|
|
7
|
-
"compiler"
|
|
8
|
-
],
|
|
9
|
-
"license": "MIT",
|
|
10
|
-
"repository": {
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "git://github.com/websolutespa/bom.git"
|
|
13
|
-
},
|
|
14
|
-
"dependencies": {
|
|
15
|
-
"@babel/core": "^7.24.4",
|
|
16
|
-
"@babel/preset-env": "^7.24.4",
|
|
17
|
-
"@babel/preset-react": "^7.24.1",
|
|
18
|
-
"@babel/preset-typescript": "^7.24.1",
|
|
19
|
-
"@rollup/plugin-babel": "^6.0.4",
|
|
20
|
-
"@rollup/plugin-commonjs": "^25.0.7",
|
|
21
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
22
|
-
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
23
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
24
|
-
"@rollup/plugin-typescript": "^11.1.6",
|
|
25
|
-
"@svgr/rollup": "^8.1.0",
|
|
26
|
-
"babel-loader": "^9.1.3",
|
|
27
|
-
"cross-spawn": "latest",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"rollup-plugin-
|
|
31
|
-
"rollup-plugin-
|
|
32
|
-
"rollup-plugin-
|
|
33
|
-
"rollup
|
|
34
|
-
"
|
|
35
|
-
"sass
|
|
36
|
-
},
|
|
37
|
-
"peerDependencies": {
|
|
38
|
-
"react": ">=
|
|
39
|
-
"react-dom": ">=
|
|
40
|
-
},
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"@types/cross-spawn": "latest",
|
|
43
|
-
"@types/react": "
|
|
44
|
-
"@types/react-dom": "
|
|
45
|
-
"@websolutespa/tsconfig": "*",
|
|
46
|
-
"eslint-config
|
|
47
|
-
"tsup": "^
|
|
48
|
-
"typescript": "
|
|
49
|
-
},
|
|
50
|
-
"publishConfig": {
|
|
51
|
-
"access": "public"
|
|
52
|
-
},
|
|
53
|
-
"sideEffects": false,
|
|
54
|
-
"main": "./index.js",
|
|
55
|
-
"types": "./index.d.ts"
|
|
56
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@websolutespa/bom-compiler",
|
|
3
|
+
"version": "1.10.0-next.0",
|
|
4
|
+
"description": "Compiler helper of the BOM Repository",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"bom",
|
|
7
|
+
"compiler"
|
|
8
|
+
],
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git://github.com/websolutespa/bom.git"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@babel/core": "^7.24.4",
|
|
16
|
+
"@babel/preset-env": "^7.24.4",
|
|
17
|
+
"@babel/preset-react": "^7.24.1",
|
|
18
|
+
"@babel/preset-typescript": "^7.24.1",
|
|
19
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
20
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
21
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
22
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
23
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
24
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
25
|
+
"@svgr/rollup": "^8.1.0",
|
|
26
|
+
"babel-loader": "^9.1.3",
|
|
27
|
+
"cross-spawn": "latest",
|
|
28
|
+
"rimraf": "3.0.2",
|
|
29
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
30
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
31
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
32
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
33
|
+
"rollup": "^4.14.1",
|
|
34
|
+
"sass-loader": "^14.1.1",
|
|
35
|
+
"sass": "1.54.0"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"react": ">= 19.1.0",
|
|
39
|
+
"react-dom": ">= 19.1.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/cross-spawn": "latest",
|
|
43
|
+
"@types/react": "19.1.0",
|
|
44
|
+
"@types/react-dom": "19.1.2",
|
|
45
|
+
"@websolutespa/tsconfig": "*",
|
|
46
|
+
"@websolutespa/eslint-config": "*",
|
|
47
|
+
"tsup": "^8.5.0",
|
|
48
|
+
"typescript": "5.8.2"
|
|
49
|
+
},
|
|
50
|
+
"publishConfig": {
|
|
51
|
+
"access": "public"
|
|
52
|
+
},
|
|
53
|
+
"sideEffects": false,
|
|
54
|
+
"main": "./index.js",
|
|
55
|
+
"types": "./index.d.ts"
|
|
56
|
+
}
|