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 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.1";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-turbo",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Create a new Turborepo",
5
5
  "homepage": "https://turborepo.org",
6
6
  "license": "MPL-2.0",
@@ -3,7 +3,7 @@
3
3
  "version": "1.0.0",
4
4
  "private": true,
5
5
  "scripts": {
6
- "dev": "next dev",
6
+ "dev": "next dev --port 3001",
7
7
  "build": "next build",
8
8
  "start": "next start",
9
9
  "lint": "next lint"
@@ -1,6 +1,6 @@
1
1
  import { Button } from "ui";
2
2
 
3
- export default function Checkout() {
3
+ export default function Docs() {
4
4
  return (
5
5
  <div>
6
6
  <h1>Docs</h1>
@@ -1,9 +1,9 @@
1
1
  import { Button } from "ui";
2
2
 
3
- export default function Checkout() {
3
+ export default function Web() {
4
4
  return (
5
5
  <div>
6
- <h1>Docs</h1>
6
+ <h1>Web</h1>
7
7
  <Button />
8
8
  </div>
9
9
  );
@@ -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": "yarn turbo run build",
11
- "dev": "yarn turbo run dev --parallel",
12
- "lint": "yarn turbo run 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": {
@@ -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