@knotx/cli 0.2.1 → 0.2.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.cjs CHANGED
@@ -228,12 +228,12 @@ function createPackageJson(targetDir, pluginName, environment, knotxVersions) {
228
228
  exports: {
229
229
  ".": {
230
230
  types: "./dist/index.d.ts",
231
- import: "./dist/index.mjs",
231
+ import: "./dist/index.js",
232
232
  require: "./dist/index.cjs"
233
233
  }
234
234
  },
235
235
  main: "./dist/index.cjs",
236
- module: "./dist/index.mjs",
236
+ module: "./dist/index.js",
237
237
  types: "./dist/index.d.ts",
238
238
  files: [
239
239
  "dist"
@@ -217,12 +217,12 @@ function createPackageJson(targetDir, pluginName, environment, knotxVersions) {
217
217
  exports: {
218
218
  ".": {
219
219
  types: "./dist/index.d.ts",
220
- import: "./dist/index.mjs",
220
+ import: "./dist/index.js",
221
221
  require: "./dist/index.cjs"
222
222
  }
223
223
  },
224
224
  main: "./dist/index.cjs",
225
- module: "./dist/index.mjs",
225
+ module: "./dist/index.js",
226
226
  types: "./dist/index.d.ts",
227
227
  files: [
228
228
  "dist"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knotx/cli",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "CLI tool for Knotx",
5
5
  "author": "boenfu",
6
6
  "license": "MIT",
@@ -16,12 +16,12 @@
16
16
  "exports": {
17
17
  ".": {
18
18
  "types": "./dist/index.d.ts",
19
- "import": "./dist/index.mjs",
19
+ "import": "./dist/index.js",
20
20
  "require": "./dist/index.cjs"
21
21
  }
22
22
  },
23
23
  "main": "./dist/index.cjs",
24
- "module": "./dist/index.mjs",
24
+ "module": "./dist/index.js",
25
25
  "types": "./dist/index.d.ts",
26
26
  "bin": {
27
27
  "knotx": "./dist/index.cjs"
@@ -40,9 +40,9 @@
40
40
  "devDependencies": {
41
41
  "@types/fs-extra": "^11.0.4",
42
42
  "@types/inquirer": "^9.0.7",
43
- "@knotx/build-config": "0.2.1",
44
- "@knotx/eslint-config": "0.2.1",
45
- "@knotx/typescript-config": "0.2.1"
43
+ "@knotx/build-config": "0.2.2",
44
+ "@knotx/eslint-config": "0.2.2",
45
+ "@knotx/typescript-config": "0.2.2"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "unbuild --failOnWarn=false",