@turbo/codemod 1.7.1-canary.2 → 1.7.1-canary.3

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -2
  2. package/package.json +13 -13
package/dist/cli.js CHANGED
@@ -742,7 +742,7 @@ var import_update_check = __toESM(require("update-check"));
742
742
  // package.json
743
743
  var package_default = {
744
744
  name: "@turbo/codemod",
745
- version: "1.7.1-canary.2",
745
+ version: "1.7.1-canary.3",
746
746
  description: "Provides Codemod transformations to help upgrade your Turborepo codebase when a feature is deprecated.",
747
747
  homepage: "https://turbo.build/repo",
748
748
  license: "MPL-2.0",
@@ -754,7 +754,7 @@ var package_default = {
754
754
  bugs: {
755
755
  url: "https://github.com/vercel/turbo/issues"
756
756
  },
757
- bin: "dist/index.js",
757
+ bin: "dist/cli.js",
758
758
  scripts: {
759
759
  build: "tsup",
760
760
  test: "jest",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turbo/codemod",
3
- "version": "1.7.1-canary.2",
3
+ "version": "1.7.1-canary.3",
4
4
  "description": "Provides Codemod transformations to help upgrade your Turborepo codebase when a feature is deprecated.",
5
5
  "homepage": "https://turbo.build/repo",
6
6
  "license": "MPL-2.0",
@@ -12,14 +12,7 @@
12
12
  "bugs": {
13
13
  "url": "https://github.com/vercel/turbo/issues"
14
14
  },
15
- "bin": "dist/index.js",
16
- "scripts": {
17
- "build": "tsup",
18
- "test": "jest",
19
- "lint": "eslint src/**/*.ts",
20
- "check-types": "tsc --noEmit",
21
- "add-transformer": "plop"
22
- },
15
+ "bin": "dist/cli.js",
23
16
  "dependencies": {
24
17
  "axios": "0.27.2",
25
18
  "chalk": "2.4.2",
@@ -33,7 +26,7 @@
33
26
  "is-git-clean": "^1.1.0",
34
27
  "ora": "4.1.1",
35
28
  "semver": "^7.3.7",
36
- "turbo-utils": "workspace:*",
29
+ "turbo-utils": "0.0.0",
37
30
  "update-check": "^1.5.4"
38
31
  },
39
32
  "devDependencies": {
@@ -52,9 +45,9 @@
52
45
  "plop": "^3.1.1",
53
46
  "semver": "^7.3.5",
54
47
  "ts-jest": "^27.1.1",
55
- "tsconfig": "workspace:*",
48
+ "tsconfig": "0.0.0",
56
49
  "tsup": "^5.10.3",
57
- "turbo-types": "workspace:*",
50
+ "turbo-types": "0.0.0",
58
51
  "typescript": "^4.5.5",
59
52
  "uuid": "^9.0.0"
60
53
  },
@@ -63,5 +56,12 @@
63
56
  ],
64
57
  "publishConfig": {
65
58
  "access": "public"
59
+ },
60
+ "scripts": {
61
+ "build": "tsup",
62
+ "test": "jest",
63
+ "lint": "eslint src/**/*.ts",
64
+ "check-types": "tsc --noEmit",
65
+ "add-transformer": "plop"
66
66
  }
67
- }
67
+ }