create-axiom-app 0.1.6 → 0.1.8

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/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.8](https://github.com/toctive-com/create-axiom-app/compare/v0.1.7...v0.1.8) (2025-12-21)
6
+
7
+ ### [0.1.7](https://github.com/toctive-com/create-axiom-app/compare/v0.1.6...v0.1.7) (2025-12-21)
8
+
9
+
10
+ ### Features
11
+
12
+ * add bin entry for create-axiom-app in package.json ([4b9061c](https://github.com/toctive-com/create-axiom-app/commit/4b9061cad515e0555c1f5d65ef86f9cb5a5f458b))
13
+
5
14
  ### [0.1.6](https://github.com/toctive-com/create-axiom-app/compare/v0.1.5...v0.1.6) (2025-12-21)
6
15
 
7
16
 
package/dist/index.cjs CHANGED
@@ -1,2 +1,3 @@
1
+ #!/usr/bin/env node
1
2
  "use strict";console.log("Hello, Axiom!");
2
3
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["console.log(\"Hello, Axiom!\");"],"mappings":"aAAA,QAAQ,IAAI,eAAe","names":[]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["#!/usr/bin/env node\n\nconsole.log(\"Hello, Axiom!\");"],"mappings":";aAEA,QAAQ,IAAI,eAAe","names":[]}
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
+ #!/usr/bin/env node
1
2
  console.log("Hello, Axiom!");
2
3
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["console.log(\"Hello, Axiom!\");"],"mappings":"AAAA,QAAQ,IAAI,eAAe","names":[]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["#!/usr/bin/env node\n\nconsole.log(\"Hello, Axiom!\");"],"mappings":";AAEA,QAAQ,IAAI,eAAe","names":[]}
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "create-axiom-app",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "create-axiom-app": "./dist/index.js"
10
+ },
8
11
  "private": false,
9
12
  "author": "Sameh A. Elalfi <sameh.elalfi.mail@gmail.com>",
10
13
  "license": "MIT",