intlayer 3.0.2 → 3.1.0

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.
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+ var import_cli = require("@intlayer/cli");
4
+ (0, import_cli.setAPI)();
5
+ //# sourceMappingURL=cli.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/cli.ts"],"sourcesContent":["#!/usr/bin/env node\n\n// @ts-ignore @intlayer/cli not build yet\nimport { setAPI } from '@intlayer/cli';\n\n// Log the compiler options\nsetAPI();\n"],"mappings":";;AAGA,iBAAuB;AAAA,IAGvB,mBAAO;","names":[]}
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import { setAPI } from "@intlayer/cli";
3
+ setAPI();
4
+ //# sourceMappingURL=cli.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/cli.ts"],"sourcesContent":["#!/usr/bin/env node\n\n// @ts-ignore @intlayer/cli not build yet\nimport { setAPI } from '@intlayer/cli';\n\n// Log the compiler options\nsetAPI();\n"],"mappings":";AAGA,SAAS,cAAc;AAGvB,OAAO;","names":[]}
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intlayer",
3
- "version": "3.0.2",
3
+ "version": "3.1.0",
4
4
  "private": false,
5
5
  "description": "Manage internationalization in a simple way, through TypeScript, declaration file, declare your multilingual every where in your code.",
6
6
  "keywords": [
@@ -50,31 +50,34 @@
50
50
  ]
51
51
  }
52
52
  },
53
+ "bin": {
54
+ "intlayer": "./dist/cjs/cli.cjs"
55
+ },
53
56
  "files": [
54
57
  "./dist",
55
58
  "./package.json"
56
59
  ],
57
60
  "dependencies": {
58
- "webpack": "^5.92.1",
59
- "@intlayer/core": "^3.0.2",
60
- "@intlayer/config": "^3.0.2",
61
- "intlayer": "^3.0.2"
61
+ "webpack": "^5.96.1",
62
+ "@intlayer/core": "^3.1.0",
63
+ "@intlayer/config": "^3.1.0",
64
+ "@intlayer/cli": "^3.1.0"
62
65
  },
63
66
  "devDependencies": {
64
67
  "@changesets/changelog-github": "0.5.0",
65
- "@changesets/cli": "2.27.1",
66
- "@types/node": "^20.14.9",
67
- "concurrently": "^8.2.2",
68
- "eslint": "^9.11.1",
69
- "prettier": "3.3.3",
70
- "rimraf": "5.0.5",
68
+ "@changesets/cli": "2.27.9",
69
+ "@types/node": "^22.9.0",
70
+ "concurrently": "^9.1.0",
71
+ "eslint": "^9.14.0",
72
+ "prettier": "^3.3.3",
73
+ "rimraf": "^6.0.1",
71
74
  "tsc-alias": "^1.8.10",
72
- "tsup": "^8.3.0",
73
- "typescript": "^5.5.2",
75
+ "tsup": "^8.3.5",
76
+ "typescript": "^5.6.3",
74
77
  "@utils/eslint-config": "^1.0.4",
75
- "@utils/ts-config-types": "^1.0.4",
76
78
  "@utils/tsup-config": "^1.0.4",
77
- "@utils/ts-config": "^1.0.4"
79
+ "@utils/ts-config": "^1.0.4",
80
+ "@utils/ts-config-types": "^1.0.4"
78
81
  },
79
82
  "engines": {
80
83
  "node": ">=14.18"