@sdeverywhere/create 0.2.27 → 0.2.29

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/bin/create-sde.js CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  const currentVersion = process.versions.node
5
5
  const requiredMajorVersion = parseInt(currentVersion.split('.')[0], 10)
6
- const minimumMajorVersion = 18
6
+ const minimumMajorVersion = 20
7
7
 
8
8
  if (requiredMajorVersion < minimumMajorVersion) {
9
9
  console.error(`Node.js v${currentVersion} is not supported by SDEverywhere.`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdeverywhere/create",
3
- "version": "0.2.27",
3
+ "version": "0.2.29",
4
4
  "description": "Create a new SDEverywhere project with minimal configuration",
5
5
  "type": "module",
6
6
  "files": [
@@ -11,7 +11,7 @@
11
11
  "create-sde": "bin/create-sde.js"
12
12
  },
13
13
  "dependencies": {
14
- "@sdeverywhere/compile": "^0.7.23",
14
+ "@sdeverywhere/compile": "^0.7.24",
15
15
  "execa": "^6.1.0",
16
16
  "find-up": "^6.3.0",
17
17
  "fs-extra": "^10.1.0",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/fs-extra": "^9.0.13",
27
- "@types/node": "^20.5.7",
27
+ "@types/node": "^20.14.8",
28
28
  "@types/prompts": "^2.0.14",
29
29
  "@types/which-pm-runs": "^1.0.0",
30
30
  "@types/yargs-parser": "^21.0.0"
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "scripts": {
44
44
  "clean": "rm -rf dist tests/fixtures/empty-dir tests/fixtures/scratch-dir",
45
- "lint": "eslint src --ext .ts --max-warnings 0",
45
+ "lint": "eslint src --max-warnings 0",
46
46
  "prettier:check": "prettier --check .",
47
47
  "prettier:fix": "prettier --write .",
48
48
  "precommit": "../../scripts/precommit",