@lorion-org/descriptor-selection 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 +0 -0
- package/README.md +0 -0
- package/dist/index.cjs +0 -0
- package/dist/index.d.cts +0 -0
- package/dist/index.d.ts +0 -0
- package/dist/index.js +0 -0
- package/package.json +13 -14
- package/src/index.ts +0 -0
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/descriptor-selection",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.5",
|
|
4
4
|
"description": "Framework-free provider-aware descriptor selection: resolve the active set from a seed with dependency and single-provider resolution.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -42,19 +42,9 @@
|
|
|
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/descriptor-selection/src/index.spec.ts",
|
|
51
|
-
"coverage": "node -e \"require('node:fs').mkdirSync('../../coverage/.tmp', { recursive: true })\" && vitest run --coverage --coverage.include=packages/descriptor-selection/src/**/*.ts --root ../.. --config vitest.config.mts packages/descriptor-selection/src/index.spec.ts",
|
|
52
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
53
|
-
"package:check": "pnpm build && pnpm pack --dry-run && publint"
|
|
54
|
-
},
|
|
55
45
|
"dependencies": {
|
|
56
|
-
"@lorion-org/composition-graph": "
|
|
57
|
-
"@lorion-org/provider-selection": "
|
|
46
|
+
"@lorion-org/composition-graph": "^1.0.0-beta.5",
|
|
47
|
+
"@lorion-org/provider-selection": "^1.0.0-beta.5"
|
|
58
48
|
},
|
|
59
49
|
"keywords": [
|
|
60
50
|
"descriptor",
|
|
@@ -65,5 +55,14 @@
|
|
|
65
55
|
],
|
|
66
56
|
"engines": {
|
|
67
57
|
"node": "^20.19.0 || >=22.12.0"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
61
|
+
"clean": "rimraf coverage dist tsconfig.tsbuildinfo",
|
|
62
|
+
"lint": "eslint src --ext .ts",
|
|
63
|
+
"test": "vitest run --root ../.. --config vitest.config.mts packages/descriptor-selection/src/index.spec.ts",
|
|
64
|
+
"coverage": "node -e \"require('node:fs').mkdirSync('../../coverage/.tmp', { recursive: true })\" && vitest run --coverage --coverage.include=packages/descriptor-selection/src/**/*.ts --root ../.. --config vitest.config.mts packages/descriptor-selection/src/index.spec.ts",
|
|
65
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
66
|
+
"package:check": "pnpm build && pnpm pack --dry-run && publint"
|
|
68
67
|
}
|
|
69
|
-
}
|
|
68
|
+
}
|
package/src/index.ts
CHANGED
|
File without changes
|