@lorion-org/surface-activation 1.0.0-beta.3 → 1.0.0-beta.5

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/LICENSE CHANGED
File without changes
package/README.md CHANGED
File without changes
package/dist/index.cjs CHANGED
File without changes
package/dist/index.d.cts CHANGED
File without changes
package/dist/index.d.ts CHANGED
File without changes
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lorion-org/surface-activation",
3
- "version": "1.0.0-beta.3",
3
+ "version": "1.0.0-beta.5",
4
4
  "description": "Framework-free surface-activation convention: which module and export provides a capability's surface, and the import specifier to reach it.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -42,16 +42,6 @@
42
42
  "src/**/*.ts",
43
43
  "!src/**/*.spec.ts"
44
44
  ],
45
- "scripts": {
46
- "build": "tsup src/index.ts --format esm,cjs --dts",
47
- "clean": "rimraf coverage dist tsconfig.tsbuildinfo",
48
- "lint": "eslint src --ext .ts",
49
- "prepack": "pnpm build",
50
- "test": "vitest run --root ../.. --config vitest.config.mts packages/surface-activation/src/index.spec.ts",
51
- "coverage": "node -e \"require('node:fs').mkdirSync('../../coverage/.tmp', { recursive: true })\" && vitest run --coverage --coverage.include=packages/surface-activation/src/**/*.ts --root ../.. --config vitest.config.mts packages/surface-activation/src/index.spec.ts",
52
- "typecheck": "tsc -p tsconfig.json --noEmit",
53
- "package:check": "pnpm build && pnpm pack --dry-run && publint"
54
- },
55
45
  "keywords": [
56
46
  "surface",
57
47
  "activation",
@@ -61,5 +51,14 @@
61
51
  ],
62
52
  "engines": {
63
53
  "node": "^20.19.0 || >=22.12.0"
54
+ },
55
+ "scripts": {
56
+ "build": "tsup src/index.ts --format esm,cjs --dts",
57
+ "clean": "rimraf coverage dist tsconfig.tsbuildinfo",
58
+ "lint": "eslint src --ext .ts",
59
+ "test": "vitest run --root ../.. --config vitest.config.mts packages/surface-activation/src/index.spec.ts",
60
+ "coverage": "node -e \"require('node:fs').mkdirSync('../../coverage/.tmp', { recursive: true })\" && vitest run --coverage --coverage.include=packages/surface-activation/src/**/*.ts --root ../.. --config vitest.config.mts packages/surface-activation/src/index.spec.ts",
61
+ "typecheck": "tsc -p tsconfig.json --noEmit",
62
+ "package:check": "pnpm build && pnpm pack --dry-run && publint"
64
63
  }
65
- }
64
+ }
package/src/index.ts CHANGED
File without changes