create-axiom-app 0.1.3 → 0.1.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +5 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
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.6](https://github.com/toctive-com/create-axiom-app/compare/v0.1.5...v0.1.6) (2025-12-21)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * correct main and module entry points in package.json ([7e4627c](https://github.com/toctive-com/create-axiom-app/commit/7e4627ce7edbea9e708a0eb2a1c2bbe6dfa2cc1d))
11
+
12
+ ### [0.1.5](https://github.com/toctive-com/create-axiom-app/compare/v0.1.4...v0.1.5) (2025-12-21)
13
+
14
+ ### [0.1.4](https://github.com/toctive-com/create-axiom-app/compare/v0.0.3...v0.1.4) (2025-12-21)
15
+
16
+
17
+ ### Features
18
+
19
+ * add .editorconfig and .npmignore files; update package version to 0.1.3 ([4ed5ffb](https://github.com/toctive-com/create-axiom-app/commit/4ed5ffbbb08834251c0b469451f345cd5b509473))
20
+
5
21
  ### [0.0.3](https://github.com/toctive-com/create-axiom-app/compare/v0.0.2...v0.0.3) (2025-12-21)
6
22
 
7
23
 
package/package.json CHANGED
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "name": "create-axiom-app",
3
- "module": "index.ts",
4
- "version": "0.1.3",
3
+ "version": "0.1.6",
5
4
  "type": "module",
5
+ "main": "dist/index.cjs",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
6
8
  "private": false,
7
9
  "author": "Sameh A. Elalfi <sameh.elalfi.mail@gmail.com>",
8
10
  "license": "MIT",
@@ -29,7 +31,7 @@
29
31
  "lint": "tsup ./src",
30
32
  "start": "bun ./dist/index.js",
31
33
  "dev": "bun run --watch ./src/index.ts",
32
- "release": "standard-version && git push --follow-tags origin dev"
34
+ "release": "bun run build && standard-version && git push --follow-tags origin dev"
33
35
  },
34
36
  "dependencies": {
35
37
  "standard-version": "^9.5.0",