create-turbo 1.7.1-canary.2 → 1.7.1-canary.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +1 -1
- package/package.json +10 -10
package/dist/index.js
CHANGED
@@ -32,7 +32,7 @@ var import_chalk = __toESM(require("chalk"));
|
|
32
32
|
// package.json
|
33
33
|
var package_default = {
|
34
34
|
name: "create-turbo",
|
35
|
-
version: "1.7.1-canary.
|
35
|
+
version: "1.7.1-canary.3",
|
36
36
|
description: "Create a new Turborepo",
|
37
37
|
homepage: "https://turbo.build/repo",
|
38
38
|
license: "MPL-2.0",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "create-turbo",
|
3
|
-
"version": "1.7.1-canary.
|
3
|
+
"version": "1.7.1-canary.3",
|
4
4
|
"description": "Create a new Turborepo",
|
5
5
|
"homepage": "https://turbo.build/repo",
|
6
6
|
"license": "MPL-2.0",
|
@@ -15,12 +15,6 @@
|
|
15
15
|
"bin": {
|
16
16
|
"create-turbo": "dist/index.js"
|
17
17
|
},
|
18
|
-
"scripts": {
|
19
|
-
"build": "tsup",
|
20
|
-
"test": "jest",
|
21
|
-
"lint": "eslint src/**/*.ts",
|
22
|
-
"check-types": "tsc --noEmit"
|
23
|
-
},
|
24
18
|
"dependencies": {
|
25
19
|
"chalk": "2.4.2",
|
26
20
|
"execa": "5.1.1",
|
@@ -47,12 +41,18 @@
|
|
47
41
|
"semver": "^7.3.5",
|
48
42
|
"strip-ansi": "^6.0.1",
|
49
43
|
"ts-jest": "^27.1.1",
|
50
|
-
"tsconfig": "
|
44
|
+
"tsconfig": "0.0.0",
|
51
45
|
"tsup": "^5.10.3",
|
52
46
|
"typescript": "^4.5.5"
|
53
47
|
},
|
54
48
|
"files": [
|
55
49
|
"dist",
|
56
50
|
"templates"
|
57
|
-
]
|
58
|
-
|
51
|
+
],
|
52
|
+
"scripts": {
|
53
|
+
"build": "tsup",
|
54
|
+
"test": "jest",
|
55
|
+
"lint": "eslint src/**/*.ts",
|
56
|
+
"check-types": "tsc --noEmit"
|
57
|
+
}
|
58
|
+
}
|