@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @websolutespa/bom-compiler
2
2
 
3
+ ## 1.10.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Updating: React 19.x, Payload 3.x
8
+
3
9
  ## 0.2.2
4
10
 
5
11
  ### Patch Changes
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
@@ -4,9 +4,6 @@ declare function build(): Promise<void>;
4
4
  declare function emitDeclaration(): Promise<void>;
5
5
 
6
6
  export {
7
- resolveDirname,
8
- clean,
9
- build,
10
- emitDeclaration,
7
+ build, clean, emitDeclaration, resolveDirname
11
8
  };
12
9
 
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.2.2",
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": ">= 18.2.0",
39
- "react-dom": ">= 18.2.0"
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": "^18.2.75",
44
- "@types/react-dom": "^18.2.24",
43
+ "@types/react": "19.1.0",
44
+ "@types/react-dom": "19.1.2",
45
45
  "@websolutespa/tsconfig": "*",
46
- "eslint-config-websolute": "*",
47
- "tsup": "^6.7.0",
48
- "typescript": "^5.4.5"
46
+ "@websolutespa/eslint-config": "*",
47
+ "tsup": "^8.5.0",
48
+ "typescript": "5.8.2"
49
49
  },
50
50
  "publishConfig": {
51
51
  "access": "public"