@stacksjs/build 0.40.0 → 0.41.0
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/example-vue.mjs +1 -1
- package/dist/example-wc.mjs +1 -1
- package/dist/functions.mjs +1 -1
- package/dist/pages.mjs +1 -1
- package/dist/vue-components.mjs +1 -1
- package/dist/web-components.mjs +1 -1
- package/package.json +6 -6
package/dist/example-vue.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineConfig } from "vite";
|
|
2
2
|
import { examplesPath } from "@stacksjs/path";
|
|
3
3
|
import { server } from "@stacksjs/server";
|
|
4
|
-
import { alias } from "
|
|
4
|
+
import { alias } from "../../../buddy/alias";
|
|
5
5
|
import { uiEngine } from "./index.mjs";
|
|
6
6
|
export const vueComponentsExampleConfig = {
|
|
7
7
|
root: examplesPath("vue-components"),
|
package/dist/example-wc.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineConfig } from "vite";
|
|
2
2
|
import { examplesPath } from "@stacksjs/path";
|
|
3
3
|
import { server } from "@stacksjs/server";
|
|
4
|
-
import { alias } from "
|
|
4
|
+
import { alias } from "../../../buddy/alias";
|
|
5
5
|
import { uiEngine } from "./index.mjs";
|
|
6
6
|
export const webComponentsExampleConfig = {
|
|
7
7
|
root: examplesPath("web-components"),
|
package/dist/functions.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineConfig } from "vite";
|
|
2
2
|
import { buildEntriesPath, frameworkPath, functionsPath, projectPath } from "@stacksjs/path";
|
|
3
3
|
import { library } from "@stacksjs/config";
|
|
4
|
-
import { alias } from "
|
|
4
|
+
import { alias } from "../../../buddy/alias";
|
|
5
5
|
import { autoImports } from "./index.mjs";
|
|
6
6
|
export const functionsConfig = {
|
|
7
7
|
root: functionsPath(),
|
package/dist/pages.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineConfig } from "vite";
|
|
2
2
|
import generateSitemap from "vite-ssg-sitemap";
|
|
3
3
|
import { functionsPath, projectPath } from "@stacksjs/path";
|
|
4
|
-
import { alias } from "
|
|
4
|
+
import { alias } from "../../../buddy/alias";
|
|
5
5
|
import { autoImports, components, cssEngine, i18n, inspect, layouts, markdown, pages, preview, pwa, uiEngine } from "./index.mjs";
|
|
6
6
|
export const pagesConfig = {
|
|
7
7
|
root: functionsPath(),
|
package/dist/vue-components.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { defineConfig } from "vite";
|
|
|
2
2
|
import { buildEntriesPath, componentsPath, frameworkPath, projectPath } from "@stacksjs/path";
|
|
3
3
|
import { library } from "@stacksjs/config";
|
|
4
4
|
import { server } from "@stacksjs/server";
|
|
5
|
-
import { alias } from "
|
|
5
|
+
import { alias } from "../../../buddy/alias";
|
|
6
6
|
import { autoImports, components, cssEngine, inspect, preview, uiEngine } from "./index.mjs";
|
|
7
7
|
export const vueComponentsConfig = {
|
|
8
8
|
root: componentsPath(),
|
package/dist/web-components.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { defineConfig } from "vite";
|
|
|
2
2
|
import { buildEntriesPath, componentsPath, frameworkPath, projectPath } from "@stacksjs/path";
|
|
3
3
|
import { library } from "@stacksjs/config";
|
|
4
4
|
import { server } from "@stacksjs/server";
|
|
5
|
-
import { alias } from "
|
|
5
|
+
import { alias } from "../../../buddy/alias";
|
|
6
6
|
import { autoImports, components, cssEngine, inspect, uiEngine } from "./index.mjs";
|
|
7
7
|
const isWebComponent = true;
|
|
8
8
|
export const webComponentsConfig = {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/build",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.41.0",
|
|
5
5
|
"packageManager": "pnpm@7.16.0",
|
|
6
6
|
"description": "The Stacks framework build tools and configurations.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@intlify/vite-plugin-vue-i18n": "^6.0.3",
|
|
42
|
-
"@stacksjs/config": "0.
|
|
43
|
-
"@stacksjs/server": "0.
|
|
44
|
-
"@stacksjs/types": "0.
|
|
45
|
-
"@stacksjs/utils": "0.
|
|
42
|
+
"@stacksjs/config": "0.41.0",
|
|
43
|
+
"@stacksjs/server": "0.41.0",
|
|
44
|
+
"@stacksjs/types": "0.41.0",
|
|
45
|
+
"@stacksjs/utils": "0.41.0",
|
|
46
46
|
"@vitejs/plugin-vue": "^3.2.0",
|
|
47
47
|
"markdown-it-link-attributes": "^4.0.1",
|
|
48
48
|
"markdown-it-shiki": "^0.6.1",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"vue-i18n": "^9.2.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"mkdist": "^0.
|
|
65
|
+
"mkdist": "^1.0.0",
|
|
66
66
|
"typescript": "^4.8.4"
|
|
67
67
|
},
|
|
68
68
|
"scripts": {
|