create-harper 0.0.10 → 0.1.1
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/README.md +0 -3
- package/lib/steps/checkForUpdate.js +1 -1
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -2,9 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
## Scaffolding Your First Harper Project
|
|
4
4
|
|
|
5
|
-
> **Compatibility Note:**
|
|
6
|
-
> Harper requires [Node.js](https://nodejs.org/en/) version 20.19+, 22.12+. However, some templates require a higher Node.js version to work, please upgrade if your package manager warns about it.
|
|
7
|
-
|
|
8
5
|
With NPM:
|
|
9
6
|
|
|
10
7
|
```bash
|
|
@@ -54,7 +54,7 @@ export async function checkForUpdate() {
|
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
const result = spawn.sync('npx', [`${pkg.name}@latest`, ...process.argv.slice(2)], {
|
|
57
|
+
const result = spawn.sync('npx', ['-y', `${pkg.name}@latest`, ...process.argv.slice(2)], {
|
|
58
58
|
stdio: 'inherit',
|
|
59
59
|
});
|
|
60
60
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-harper",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "HarperDB",
|
|
@@ -35,10 +35,7 @@
|
|
|
35
35
|
"engines": {
|
|
36
36
|
"node": "^20.19.0 || >=22.12.0"
|
|
37
37
|
},
|
|
38
|
-
"repository":
|
|
39
|
-
"type": "git",
|
|
40
|
-
"url": "git+https://github.com/harperfast/create-harper.git"
|
|
41
|
-
},
|
|
38
|
+
"repository": "github:HarperFast/create-harper",
|
|
42
39
|
"bugs": {
|
|
43
40
|
"url": "https://github.com/harperfast/create-harper/issues"
|
|
44
41
|
},
|
|
@@ -53,9 +50,16 @@
|
|
|
53
50
|
"devDependencies": {
|
|
54
51
|
"@commitlint/cli": "^20.0.0",
|
|
55
52
|
"@commitlint/config-conventional": "^20.0.0",
|
|
53
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
54
|
+
"@semantic-release/git": "^10.0.1",
|
|
55
|
+
"@semantic-release/github": "^12.0.2",
|
|
56
|
+
"@semantic-release/npm": "^13.1.1",
|
|
57
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
56
58
|
"@vitest/coverage-v8": "^4.0.17",
|
|
59
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
57
60
|
"dprint": "^0.51.1",
|
|
58
61
|
"oxlint": "^1.38.0",
|
|
62
|
+
"semantic-release": "^25.0.2",
|
|
59
63
|
"vitest": "^4.0.17"
|
|
60
64
|
}
|
|
61
65
|
}
|