@valaxyjs/devtools 0.0.1 → 0.18.0-beta.3
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/README.md +13 -0
- package/build.config.ts +3 -0
- package/dist/client/assets/_plugin-vue_export-helper-PLawvS9c.js +11 -0
- package/dist/client/assets/about-ElTANHBg.js +12 -0
- package/dist/client/assets/categories-J8DcyOCk.js +12 -0
- package/dist/client/assets/index-Ic8qbUfo.js +4526 -0
- package/dist/client/assets/{index-UJyf60Kd.css → index-NKBWV0hh.css} +9 -1
- package/dist/client/assets/{index-vPMPXhW9.js → index-q944aN_L.js} +331 -646
- package/dist/client/assets/index-xfOC-KHy.css +61 -0
- package/dist/client/assets/tags--GcTVHIk.js +12 -0
- package/dist/client/index.html +3 -3
- package/dist/index.cjs +41 -5
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +38 -5
- package/package.json +13 -2
- package/src/client/App.vue +4 -12
- package/src/client/components/PageFrontmatter.vue +66 -0
- package/src/client/components/PostPanel.vue +22 -0
- package/src/client/components/VDPostCategories.vue +26 -0
- package/src/client/components/VDPostList.vue +31 -0
- package/src/client/components/VDTag.vue +9 -0
- package/src/client/components.d.ts +51 -0
- package/src/client/composables/app.ts +10 -0
- package/src/client/index.html +1 -1
- package/src/client/main.ts +6 -3
- package/src/client/pages/about.vue +5 -0
- package/src/client/pages/categories.vue +5 -0
- package/src/client/pages/index.vue +29 -3
- package/src/client/pages/tags.vue +5 -0
- package/src/client/styles/index.css +8 -0
- package/src/client/typed-routes.d.ts +4 -0
- package/src/client/types/index.ts +3 -0
- package/src/client/utils/api.ts +18 -0
- package/src/client/utils/get.ts +19 -0
- package/src/client/utils/index.ts +4 -0
- package/src/client/utils/init.ts +27 -0
- package/src/client/vite.config.ts +12 -14
- package/src/node/api/index.ts +35 -0
- package/src/node/index.ts +22 -5
- package/uno.config.ts +0 -3
package/README.md
ADDED
package/build.config.ts
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { _ as _export_sfc } from './_plugin-vue_export-helper-PLawvS9c.js';
|
|
2
|
+
import { a as createElementBlock, o as openBlock } from './index-q944aN_L.js';
|
|
3
|
+
|
|
4
|
+
/* unplugin-vue-components disabled */const _sfc_main = {};
|
|
5
|
+
|
|
6
|
+
function _sfc_render(_ctx, _cache) {
|
|
7
|
+
return (openBlock(), createElementBlock("div", null, " About "))
|
|
8
|
+
}
|
|
9
|
+
const about = /*#__PURE__*/_export_sfc(_sfc_main, [['render',_sfc_render]]);
|
|
10
|
+
/* Injected with object hook! */
|
|
11
|
+
|
|
12
|
+
export { about as default };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { _ as _export_sfc } from './_plugin-vue_export-helper-PLawvS9c.js';
|
|
2
|
+
import { a as createElementBlock, o as openBlock } from './index-q944aN_L.js';
|
|
3
|
+
|
|
4
|
+
/* unplugin-vue-components disabled */const _sfc_main = {};
|
|
5
|
+
|
|
6
|
+
function _sfc_render(_ctx, _cache) {
|
|
7
|
+
return (openBlock(), createElementBlock("div", null, " Categories "))
|
|
8
|
+
}
|
|
9
|
+
const categories = /*#__PURE__*/_export_sfc(_sfc_main, [['render',_sfc_render]]);
|
|
10
|
+
/* Injected with object hook! */
|
|
11
|
+
|
|
12
|
+
export { categories as default };
|