@lssm/lib.lifecycle 0.2.0 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +9 -6
package/README.md CHANGED
@@ -48,3 +48,14 @@ This library intentionally ships no IO logic so it can run in browsers, Node run
48
48
 
49
49
 
50
50
 
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/lib.lifecycle",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -10,6 +10,7 @@
10
10
  "README.md"
11
11
  ],
12
12
  "scripts": {
13
+ "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
13
14
  "build": "bun build:bundle && bun build:types",
14
15
  "build:bundle": "tsdown",
15
16
  "build:types": "tsc --noEmit",
@@ -18,18 +19,20 @@
18
19
  "lint": "bun lint:fix",
19
20
  "lint:fix": "eslint src --fix",
20
21
  "lint:check": "eslint src",
21
- "test": "vitest run"
22
+ "test": "bun run"
22
23
  },
23
24
  "peerDependencies": {},
24
25
  "devDependencies": {
25
- "@lssm/tool.tsdown": "*",
26
- "@lssm/tool.typescript": "*",
26
+ "@lssm/tool.tsdown": "0.12.0",
27
+ "@lssm/tool.typescript": "0.11.0",
27
28
  "tsdown": "^0.16.6",
28
- "typescript": "^5.9.3",
29
- "vitest": "^1.6.0"
29
+ "typescript": "^5.9.3"
30
30
  },
31
31
  "exports": {
32
32
  ".": "./dist/index.js",
33
33
  "./*": "./*"
34
+ },
35
+ "publishConfig": {
36
+ "access": "public"
34
37
  }
35
38
  }