slicejs-cli 2.1.1 → 2.1.2

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 (2) hide show
  1. package/package.json +1 -1
  2. package/post.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slicejs-cli",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Command client for developing web applications with Slice.js framework",
5
5
  "main": "client.js",
6
6
  "scripts": {
package/post.js CHANGED
@@ -50,7 +50,7 @@ fs.promises.access(projectPackageJsonPath, fs.constants.F_OK)
50
50
  // Module configuration
51
51
  projectPackageJson.type = 'module';
52
52
  projectPackageJson.engines = {
53
- "node": "20.x"
53
+ "node": ">=20.0.0"
54
54
  };
55
55
 
56
56
  // Write the new content to package.json
@@ -112,7 +112,7 @@ fs.promises.access(projectPackageJsonPath, fs.constants.F_OK)
112
112
  license: 'ISC',
113
113
  type: 'module',
114
114
  engines: {
115
- "node": "20.x"
115
+ "node": ">=20.0.0"
116
116
  }
117
117
  };
118
118