@modern-js/monorepo-tools 2.60.0 → 2.60.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/cjs/index.js CHANGED
@@ -25,7 +25,7 @@ __export(src_exports, {
25
25
  module.exports = __toCommonJS(src_exports);
26
26
  var import_plugin_changeset = require("@modern-js/plugin-changeset");
27
27
  var import_language_detector = require("@modern-js/plugin-i18n/language-detector");
28
- var import_plugin_lint = require("@modern-js/plugin-lint");
28
+ var import_utils = require("@modern-js/utils");
29
29
  var import_cli = require("./cli");
30
30
  var import_hooks = require("./hooks");
31
31
  var import_locale = require("./locale");
@@ -33,8 +33,7 @@ __reExport(src_exports, require("./projects/getProjects"), module.exports);
33
33
  const monorepoTools = () => ({
34
34
  name: "@modern-js/monorepo-tools",
35
35
  usePlugins: [
36
- (0, import_plugin_changeset.changesetPlugin)(),
37
- (0, import_plugin_lint.lintPlugin)()
36
+ (0, import_plugin_changeset.changesetPlugin)()
38
37
  ],
39
38
  registerHook: import_hooks.hooks,
40
39
  setup: (api) => {
@@ -53,6 +52,7 @@ const monorepoTools = () => ({
53
52
  (0, import_cli.deployCli)(program, api);
54
53
  (0, import_cli.newCli)(program);
55
54
  (0, import_cli.upgradeCli)(program);
55
+ (0, import_utils.deprecatedCommands)(program);
56
56
  }
57
57
  };
58
58
  },
package/dist/esm/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { changesetPlugin } from "@modern-js/plugin-changeset";
2
2
  import { getLocaleLanguage } from "@modern-js/plugin-i18n/language-detector";
3
- import { lintPlugin } from "@modern-js/plugin-lint";
3
+ import { deprecatedCommands } from "@modern-js/utils";
4
4
  import { clearCli, deployCli, newCli, upgradeCli } from "./cli";
5
5
  import { hooks } from "./hooks";
6
6
  import { i18n } from "./locale";
@@ -8,8 +8,7 @@ export * from "./projects/getProjects";
8
8
  const monorepoTools = () => ({
9
9
  name: "@modern-js/monorepo-tools",
10
10
  usePlugins: [
11
- changesetPlugin(),
12
- lintPlugin()
11
+ changesetPlugin()
13
12
  ],
14
13
  registerHook: hooks,
15
14
  setup: (api) => {
@@ -28,6 +27,7 @@ const monorepoTools = () => ({
28
27
  deployCli(program, api);
29
28
  newCli(program);
30
29
  upgradeCli(program);
30
+ deprecatedCommands(program);
31
31
  }
32
32
  };
33
33
  },
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "2.60.0",
18
+ "version": "2.60.2",
19
19
  "jsnext:source": "./src/index.ts",
20
20
  "types": "./dist/types/index.d.ts",
21
21
  "main": "./dist/cjs/index.js",
@@ -43,12 +43,11 @@
43
43
  "anymatch": "^3.1.2",
44
44
  "md5": "^2.3.0",
45
45
  "p-map": "4.0.0",
46
- "@modern-js/core": "2.60.0",
47
- "@modern-js/plugin-changeset": "2.60.0",
48
- "@modern-js/plugin": "2.60.0",
49
- "@modern-js/plugin-lint": "2.60.0",
50
- "@modern-js/plugin-i18n": "2.60.0",
51
- "@modern-js/utils": "2.60.0"
46
+ "@modern-js/core": "2.60.2",
47
+ "@modern-js/plugin-changeset": "2.60.2",
48
+ "@modern-js/plugin-i18n": "2.60.2",
49
+ "@modern-js/plugin": "2.60.2",
50
+ "@modern-js/utils": "2.60.2"
52
51
  },
53
52
  "devDependencies": {
54
53
  "@types/jest": "^29",
@@ -56,8 +55,8 @@
56
55
  "@types/node": "^14",
57
56
  "jest": "^29",
58
57
  "typescript": "^5",
59
- "@scripts/jest-config": "2.60.0",
60
- "@scripts/build": "2.60.0"
58
+ "@scripts/build": "2.60.2",
59
+ "@scripts/jest-config": "2.60.2"
61
60
  },
62
61
  "sideEffects": false,
63
62
  "publishConfig": {