create-turbo 1.0.21-canary.1 → 1.0.23

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.21-canary.1";
34
+ var version = "1.0.23";
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.21-canary.1",
3
+ "version": "1.0.23",
4
4
  "description": "Create a new Turborepo",
5
5
  "homepage": "https://turborepo.org",
6
6
  "license": "MPL-2.0",
@@ -5,4 +5,7 @@ module.exports = {
5
5
  rootDir: ["apps/*/", "packages/*/"],
6
6
  },
7
7
  },
8
+ rules: {
9
+ "no-html-link-for-pages": "off",
10
+ },
8
11
  };
@@ -9,6 +9,7 @@
9
9
  "forceConsistentCasingInFileNames": true,
10
10
  "inlineSources": false,
11
11
  "isolatedModules": true,
12
+ "moduleResolution": "node",
12
13
  "noUnusedLocals": false,
13
14
  "noUnusedParameters": false,
14
15
  "preserveWatchOutput": true,
@@ -13,7 +13,6 @@
13
13
  "incremental": true,
14
14
  "esModuleInterop": true,
15
15
  "module": "esnext",
16
- "moduleResolution": "node",
17
16
  "resolveJsonModule": true,
18
17
  "isolatedModules": true,
19
18
  "jsx": "preserve"
@@ -1,3 +1,4 @@
1
+ import * as React from "react";
1
2
  export const Button = () => {
2
3
  return <button>Boop</button>;
3
4
  };
@@ -1 +1,2 @@
1
+ import * as React from "react";
1
2
  export * from "./Button";