create-turbo 1.0.12 → 1.0.13

Sign up to get free protection for your applications and to get access to all the features.
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.12";
34
+ var version = "1.0.13";
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.12",
3
+ "version": "1.0.13",
4
4
  "description": "Create a new Turborepo",
5
5
  "homepage": "https://turborepo.org",
6
6
  "license": "MPL-2.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docs",
3
- "version": "1.0.0",
3
+ "version": "0.0.0",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "next dev --port 3001",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web",
3
- "version": "1.0.0",
3
+ "version": "0.0.0",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "next dev",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "config",
3
- "version": "1.0.0",
3
+ "version": "0.0.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -1,3 +1,3 @@
1
1
  # `tsconfig`
2
2
 
3
- This is the base shared `tsconfig.json` from which all other `tsconfig.json`'s inherit from.
3
+ These are base shared `tsconfig.json`s from which all other `tsconfig.json`'s inherit from.
@@ -0,0 +1 @@
1
+ export * from "./Button";
@@ -1,7 +1,13 @@
1
1
  {
2
2
  "name": "ui",
3
- "version": "1.0.0",
4
- "main": "./Button.tsx",
5
- "types": "./Button.tsx",
6
- "license": "MIT"
3
+ "version": "0.0.0",
4
+ "main": "./index.tsx",
5
+ "types": "./index.tsx",
6
+ "license": "MIT",
7
+ "devDependencies": {
8
+ "@types/react": "^17.0.37",
9
+ "@types/react-dom": "^17.0.11",
10
+ "tsconfig": "*",
11
+ "typescript": "^4.5.2"
12
+ }
7
13
  }
@@ -0,0 +1,7 @@
1
+ {
2
+ "extends": "tsconfig/react-library.json",
3
+ "compilerOptions": {
4
+ "jsx": "react-jsx"
5
+ },
6
+ "exclude": ["node_modules"]
7
+ }