@formspec/constraints 0.1.0-alpha.21 → 0.1.0-alpha.26
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/dist/browser.cjs.map +1 -1
- package/dist/browser.js.map +1 -1
- package/dist/constraints-alpha.d.ts +925 -0
- package/dist/constraints-beta.d.ts +925 -0
- package/dist/constraints-internal.d.ts +925 -0
- package/dist/constraints.d.ts +292 -143
- package/dist/defaults.d.ts +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +9 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/validators/field-options.d.ts +6 -6
- package/dist/validators/field-types.d.ts +4 -4
- package/dist/validators/layout.d.ts +4 -4
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formspec/constraints",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.26",
|
|
4
4
|
"description": "Constraint validation for FormSpec - restrict features based on target environment capabilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"yaml": "^2.7.0",
|
|
29
|
-
"@formspec/core": "0.1.0-alpha.
|
|
29
|
+
"@formspec/core": "0.1.0-alpha.26"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"tsd": "^0.31.0",
|
|
33
33
|
"vitest": "^3.0.0",
|
|
34
|
-
"@formspec/dsl": "0.1.0-alpha.
|
|
34
|
+
"@formspec/dsl": "0.1.0-alpha.26"
|
|
35
35
|
},
|
|
36
36
|
"tsd": {
|
|
37
37
|
"directory": "src/__tests__"
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
],
|
|
49
49
|
"license": "UNLICENSED",
|
|
50
50
|
"scripts": {
|
|
51
|
-
"build": "tsup && tsc --emitDeclarationOnly && api-extractor
|
|
51
|
+
"build": "tsup && tsc --emitDeclarationOnly && pnpm run api-extractor:local",
|
|
52
52
|
"clean": "rm -rf dist temp",
|
|
53
53
|
"typecheck": "tsc --noEmit",
|
|
54
54
|
"test": "vitest run",
|
|
55
55
|
"test:types": "tsd",
|
|
56
|
-
"api-extractor": "api-extractor run",
|
|
57
|
-
"api-extractor:local": "api-extractor run --local",
|
|
58
|
-
"api-documenter": "api-documenter markdown -i temp -o docs"
|
|
56
|
+
"api-extractor": "api-extractor run && node ../../scripts/normalize-generated-markdown.mjs api-report",
|
|
57
|
+
"api-extractor:local": "api-extractor run --local && node ../../scripts/normalize-generated-markdown.mjs api-report",
|
|
58
|
+
"api-documenter": "api-documenter markdown -i temp -o docs && node ../../scripts/normalize-generated-markdown.mjs docs"
|
|
59
59
|
}
|
|
60
60
|
}
|