skygraph-vue 0.5.0 → 0.5.2
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/index.cjs +26 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +6 -9
- package/dist/index.d.ts.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,2 +1,26 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
16
|
+
|
|
17
|
+
// src/index.ts
|
|
18
|
+
var src_exports = {};
|
|
19
|
+
module.exports = __toCommonJS(src_exports);
|
|
20
|
+
var import_styles = require("@skygraph/styles/index.css");
|
|
21
|
+
__reExport(src_exports, require("@skygraph/vue"), module.exports);
|
|
22
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
23
|
+
0 && (module.exports = {
|
|
24
|
+
...require("@skygraph/vue")
|
|
25
|
+
});
|
|
26
|
+
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["// Side-effect import: pulls the shared CSS into the consumer's bundle so\n// `npm install skygraph-vue` is the only step required to render styled\n// components. The explicit `.css` suffix matters — without it, Vite's\n// dev-mode esbuild pre-bundle drops the side-effect import as \"unused\",\n// which leaves consumers staring at unstyled HTML on `npm run dev`.\n// Re-exports below mirror the entire public API of `@skygraph/vue`,\n// so existing imports from `@skygraph/vue` keep working unchanged.\nimport '@skygraph/styles/index.css'\n\nexport * from '@skygraph/vue'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;AAAA;AAOA,oBAAO;AAEP,wBAAc,0BATd;","names":[]}
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@skygraph/vue';
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["// Side-effect import: pulls the shared CSS into the consumer's bundle so\n// `npm install skygraph-vue` is the only step required to render styled\n// components. The explicit `.css` suffix matters — without it, Vite's\n// dev-mode esbuild pre-bundle drops the side-effect import as \"unused\",\n// which leaves consumers staring at unstyled HTML on `npm run dev`.\n// Re-exports below mirror the entire public API of `@skygraph/vue`,\n// so existing imports from `@skygraph/vue` keep working unchanged.\nimport '@skygraph/styles/index.css'\n\nexport * from '@skygraph/vue'\n"],"mappings":";AAOA,OAAO;AAEP,cAAc;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skygraph-vue",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "SkyGraph for Vue 3 — components, composables and styles in a single install",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -49,27 +49,24 @@
|
|
|
49
49
|
"skygraph"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@skygraph/core": "0.4.0",
|
|
53
52
|
"@skygraph/styles": "0.1.0",
|
|
53
|
+
"@skygraph/core": "0.4.0",
|
|
54
54
|
"@skygraph/vue": "0.5.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"vue": "^3.4.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@vitejs/plugin-vue": "^5.0.0",
|
|
61
60
|
"rimraf": "^5.0.0",
|
|
61
|
+
"tsup": "^8.0.0",
|
|
62
62
|
"typescript": "^5.4.0",
|
|
63
|
-
"vite": "^5.4.0",
|
|
64
|
-
"vite-plugin-dts": "^4.0.0",
|
|
65
63
|
"vitest": "^2.0.0",
|
|
66
|
-
"vue": "^3.4.0"
|
|
67
|
-
"vue-tsc": "^2.0.0"
|
|
64
|
+
"vue": "^3.4.0"
|
|
68
65
|
},
|
|
69
66
|
"scripts": {
|
|
70
|
-
"build": "
|
|
67
|
+
"build": "tsup",
|
|
71
68
|
"test": "vitest run --passWithNoTests",
|
|
72
|
-
"typecheck": "
|
|
69
|
+
"typecheck": "tsc --noEmit",
|
|
73
70
|
"clean": "rimraf dist"
|
|
74
71
|
}
|
|
75
72
|
}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAKA,OAAO,kBAAkB,CAAA;AAEzB,cAAc,eAAe,CAAA"}
|