create-turbo 1.0.1 → 1.0.2
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/index.js +1 -1
- package/package.json +1 -1
- package/templates/_shared_ts/apps/docs/package.json +1 -1
- package/templates/_shared_ts/apps/docs/pages/index.tsx +1 -1
- package/templates/_shared_ts/apps/web/pages/index.tsx +2 -2
- package/templates/npm/README.md +1 -1
- package/templates/npm/package.json +3 -3
- package/templates/pnpm/README.md +1 -1
package/dist/index.js
CHANGED
@@ -31,7 +31,7 @@ var import_chalk = __toModule(require("chalk"));
|
|
31
31
|
|
32
32
|
// package.json
|
33
33
|
var name = "create-turbo";
|
34
|
-
var version = "1.0.
|
34
|
+
var version = "1.0.2";
|
35
35
|
var description = "Create a new Turborepo";
|
36
36
|
var homepage = "https://turborepo.org";
|
37
37
|
var license = "MPL-2.0";
|
package/package.json
CHANGED
package/templates/npm/README.md
CHANGED
@@ -27,7 +27,7 @@ This turborepo has some additional tools already setup for you:
|
|
27
27
|
|
28
28
|
## Setup
|
29
29
|
|
30
|
-
This repository is used in the `npx create-turbo` command, and selected when choosing which package manager you wish to use with your monorepo (NPM).
|
30
|
+
This repository is used in the `npx create-turbo@latest` command, and selected when choosing which package manager you wish to use with your monorepo (NPM).
|
31
31
|
|
32
32
|
### Build
|
33
33
|
|
@@ -7,9 +7,9 @@
|
|
7
7
|
"packages/*"
|
8
8
|
],
|
9
9
|
"scripts": {
|
10
|
-
"build": "
|
11
|
-
"dev": "
|
12
|
-
"lint": "
|
10
|
+
"build": "turbo run build",
|
11
|
+
"dev": "turbo run dev --parallel",
|
12
|
+
"lint": "turbo run lint",
|
13
13
|
"format": "prettier --write '**/*.{ts,tsx,.md}'"
|
14
14
|
},
|
15
15
|
"devDependencies": {
|
package/templates/pnpm/README.md
CHANGED
@@ -27,7 +27,7 @@ This turborepo has some additional tools already setup for you:
|
|
27
27
|
|
28
28
|
## Setup
|
29
29
|
|
30
|
-
This repository is used in the `npx create-turbo` command, and selected when choosing which package manager you wish to use with your monorepo (PNPM).
|
30
|
+
This repository is used in the `npx create-turbo@latest` command, and selected when choosing which package manager you wish to use with your monorepo (PNPM).
|
31
31
|
|
32
32
|
### Build
|
33
33
|
|