ajo 0.1.1 → 0.1.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.
Files changed (1) hide show
  1. package/package.json +8 -7
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "ajo",
3
- "version": "0.1.1",
4
- "description": "ajo is a JavaScript view library for building user interfaces",
3
+ "version": "0.1.2",
4
+ "description": "Ajo is a JavaScript view library for building user interfaces",
5
5
  "type": "module",
6
- "files": [
7
- "dist"
8
- ],
9
- "main": "./dist/ajo.umd.cjs",
10
6
  "module": "./dist/ajo.js",
7
+ "main": "./dist/ajo.umd.cjs",
11
8
  "exports": {
12
9
  ".": {
13
10
  "import": "./dist/ajo.js",
14
11
  "require": "./dist/ajo.umd.cjs"
15
12
  }
16
13
  },
14
+ "files": [
15
+ "dist"
16
+ ],
17
17
  "devDependencies": {
18
18
  "jsdom": "^22.1.0",
19
19
  "vite": "^4.5.0",
@@ -34,6 +34,7 @@
34
34
  "scripts": {
35
35
  "test": "vitest --run",
36
36
  "build": "vite build",
37
- "release": "pnpm test && pnpm build && git commit -am \"$npm_package_version\" && git tag $npm_package_version && git push && git push --tags && pnpm publish"
37
+ "bump": "pnpm version patch && git push && git push --tags",
38
+ "release": "pnpm test && pnpm build && pnpm bump && pnpm publish"
38
39
  }
39
40
  }