@exiloncms/cli 1.0.2 → 1.0.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.
package/exiloncms.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import('./dist/index.js');
package/package.json CHANGED
@@ -1,16 +1,15 @@
1
1
  {
2
2
  "name": "@exiloncms/cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Interactive CLI to create new ExilonCMS projects",
5
5
  "type": "module",
6
6
  "bin": {
7
- "exiloncms": "./bin/exiloncms.cjs",
8
- "create-exiloncms": "./bin/create-exiloncms.cjs"
7
+ "exiloncms": "./exiloncms.js",
8
+ "create-exiloncms": "./exiloncms.js"
9
9
  },
10
10
  "files": [
11
11
  "dist",
12
- "bin",
13
- "templates"
12
+ "exiloncms.js"
14
13
  ],
15
14
  "scripts": {
16
15
  "dev": "tsx src/index.ts",
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env node
2
- // ESM dynamic import wrapper for CommonJS compatibility
3
- import('../dist/index.js').catch((err) => {
4
- console.error('Failed to load ExilonCMS CLI:', err);
5
- process.exit(1);
6
- });
package/bin/exiloncms.cjs DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env node
2
- // ESM dynamic import wrapper for CommonJS compatibility
3
- import('../dist/index.js').catch((err) => {
4
- console.error('Failed to load ExilonCMS CLI:', err);
5
- process.exit(1);
6
- });
package/dist/index.d.ts DELETED
@@ -1 +0,0 @@
1
- #!/usr/bin/env node