@baseplate-dev/create-project 0.3.7 → 0.3.8
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/dist/project-creator.js
CHANGED
|
@@ -40,10 +40,10 @@ export async function generateBaseplateProject({ packageName, directory, cliVers
|
|
|
40
40
|
devDependencies: {
|
|
41
41
|
'@baseplate-dev/project-builder-cli': cliVersion,
|
|
42
42
|
},
|
|
43
|
-
packageManager: 'pnpm@10.
|
|
43
|
+
packageManager: 'pnpm@10.16.1',
|
|
44
44
|
engines: {
|
|
45
45
|
node: '^22.0.0',
|
|
46
|
-
pnpm: '^10.
|
|
46
|
+
pnpm: '^10.16.1',
|
|
47
47
|
},
|
|
48
48
|
volta: {
|
|
49
49
|
node: '22.18.0',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baseplate-dev/create-project",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"description": "CLI starter kit for creating a new Baseplate project",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"commander": "^12.1.0",
|
|
40
40
|
"execa": "9.3.0",
|
|
41
41
|
"ora": "^8.0.1",
|
|
42
|
-
"@baseplate-dev/project-builder-cli": "0.3.
|
|
43
|
-
"@baseplate-dev/utils": "0.3.
|
|
42
|
+
"@baseplate-dev/project-builder-cli": "0.3.8",
|
|
43
|
+
"@baseplate-dev/utils": "0.3.8"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/node": "^22.17.2",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"tsx": "4.19.3",
|
|
51
51
|
"typescript": "5.8.3",
|
|
52
52
|
"vitest": "3.2.4",
|
|
53
|
-
"@baseplate-dev/tools": "0.3.
|
|
53
|
+
"@baseplate-dev/tools": "0.3.8"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": "^22.0.0"
|
|
@@ -6,3 +6,9 @@ save-prefix=""
|
|
|
6
6
|
link-workspace-packages=true
|
|
7
7
|
# Defaults to saving as workspace:*
|
|
8
8
|
save-workspace-protocol=rolling
|
|
9
|
+
# Security setting to delay installation of newly released dependencies
|
|
10
|
+
# to reduce risk of installing compromised packages. Popular packages that are
|
|
11
|
+
# successfully attacked are often discovered and removed from the registry
|
|
12
|
+
# within an hour. Setting to 1440 minutes (24 hours) ensures only packages
|
|
13
|
+
# released at least one day ago can be installed.
|
|
14
|
+
minimumReleaseAge=1440
|