create-turbo 1.9.3 → 1.9.4-alpha.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +37 -0
- package/dist/cli.js +209 -119
- package/package.json +10 -7
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "create-turbo",
|
3
|
-
"version": "1.9.
|
3
|
+
"version": "1.9.4-alpha.0",
|
4
4
|
"description": "Create a new Turborepo",
|
5
5
|
"homepage": "https://turbo.build/repo",
|
6
6
|
"license": "MPL-2.0",
|
@@ -29,29 +29,32 @@
|
|
29
29
|
"rimraf": "^3.0.2",
|
30
30
|
"semver": "^7.3.8",
|
31
31
|
"tar": "6.1.13",
|
32
|
-
"update-check": "^1.5.4"
|
32
|
+
"update-check": "^1.5.4",
|
33
|
+
"validate-npm-package-name": "^5.0.0"
|
33
34
|
},
|
34
35
|
"devDependencies": {
|
35
|
-
"@turbo/workspaces": "1.9.3",
|
36
36
|
"@types/async-retry": "^1.4.5",
|
37
37
|
"@types/cross-spawn": "^6.0.2",
|
38
38
|
"@types/fs-extra": "^9.0.13",
|
39
39
|
"@types/gradient-string": "^1.1.2",
|
40
|
-
"@types/inquirer": "^
|
40
|
+
"@types/inquirer": "^8.2.5",
|
41
41
|
"@types/jest": "^27.4.0",
|
42
42
|
"@types/node": "^16.11.12",
|
43
43
|
"@types/rimraf": "^3.0.2",
|
44
44
|
"@types/semver": "^7.3.9",
|
45
45
|
"@types/tar": "^6.1.4",
|
46
|
+
"@types/validate-npm-package-name": "^4.0.0",
|
46
47
|
"eslint": "^7.23.0",
|
47
48
|
"jest": "^27.4.3",
|
49
|
+
"node-plop": "^0.26.3",
|
48
50
|
"strip-ansi": "^6.0.1",
|
49
51
|
"ts-jest": "^27.1.1",
|
52
|
+
"tsup": "^6.7.0",
|
53
|
+
"typescript": "^4.5.5",
|
50
54
|
"@turbo/tsconfig": "0.0.0",
|
51
|
-
"tsup": "^5.10.3",
|
52
|
-
"@turbo/utils": "0.0.0",
|
53
55
|
"@turbo/test-utils": "0.0.0",
|
54
|
-
"
|
56
|
+
"@turbo/utils": "0.0.0",
|
57
|
+
"@turbo/workspaces": "1.9.4-canary.4"
|
55
58
|
},
|
56
59
|
"files": [
|
57
60
|
"dist"
|