@duffcloudservices/kit 0.1.0 → 0.2.1
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/package.json +11 -12
- package/src/index.ts +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@duffcloudservices/kit",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "DcsKit Vue runtime — editable primitives over editorBridge markers + the canonical @layer cascade contract for first-party DCS sites",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -17,14 +17,6 @@
|
|
|
17
17
|
},
|
|
18
18
|
"./style.css": "./dist/style.css"
|
|
19
19
|
},
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "vite build",
|
|
22
|
-
"dev": "vite build --watch",
|
|
23
|
-
"test": "vitest run",
|
|
24
|
-
"test:watch": "vitest",
|
|
25
|
-
"type-check": "vue-tsc --noEmit -p tsconfig.json",
|
|
26
|
-
"prepublishOnly": "pnpm run build"
|
|
27
|
-
},
|
|
28
20
|
"peerDependencies": {
|
|
29
21
|
"vue": "^3.5.0"
|
|
30
22
|
},
|
|
@@ -52,16 +44,23 @@
|
|
|
52
44
|
"license": "MIT",
|
|
53
45
|
"repository": {
|
|
54
46
|
"type": "git",
|
|
55
|
-
"url": "https://github.com/
|
|
47
|
+
"url": "https://github.com/NateDuff/dcs"
|
|
56
48
|
},
|
|
57
49
|
"homepage": "https://portal.duffcloudservices.com",
|
|
58
50
|
"bugs": {
|
|
59
|
-
"url": "https://github.com/
|
|
51
|
+
"url": "https://github.com/NateDuff/dcs/issues"
|
|
60
52
|
},
|
|
61
53
|
"engines": {
|
|
62
54
|
"node": ">=18.0.0"
|
|
63
55
|
},
|
|
64
56
|
"publishConfig": {
|
|
65
57
|
"access": "public"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "vite build",
|
|
61
|
+
"dev": "vite build --watch",
|
|
62
|
+
"test": "vitest run",
|
|
63
|
+
"test:watch": "vitest",
|
|
64
|
+
"type-check": "vue-tsc --noEmit -p tsconfig.json"
|
|
66
65
|
}
|
|
67
|
-
}
|
|
66
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -11,11 +11,13 @@
|
|
|
11
11
|
* sugar over the `[data-dcs-*]` editor-bridge markers, each guarded by a
|
|
12
12
|
* Vitest marker assertion (M4).
|
|
13
13
|
*
|
|
14
|
-
* STATUS:
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
14
|
+
* STATUS: published. `@duffcloudservices/kit@0.1.0` is live on npm (first publish
|
|
15
|
+
* 2026-06-19). Runtime builds + emits `dist/index.js` + `dist/style.css`;
|
|
16
|
+
* primitives exported below; marker tests pass. NOTE: this package is not yet in
|
|
17
|
+
* the `npm-publish.yml` publish loop (cms-core/cms/cms-react/cms-astro/cms-angular/
|
|
18
|
+
* cli/site-forms), so it was first-published manually; wire it into that workflow
|
|
19
|
+
* (and add a Trusted Publisher on npmjs.com) before relying on `npm-v*` tags to
|
|
20
|
+
* release future versions.
|
|
19
21
|
*
|
|
20
22
|
* See, in this monorepo, `.docs/plans/first-party-site-framework/`.
|
|
21
23
|
*/
|