@lukoweb/apitogo 0.1.45 → 0.1.46
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/cli/cli.js +5 -2
- package/package.json +1 -1
- package/src/vite/config.ts +4 -1
package/dist/cli/cli.js
CHANGED
|
@@ -4133,7 +4133,7 @@ import {
|
|
|
4133
4133
|
// package.json
|
|
4134
4134
|
var package_default = {
|
|
4135
4135
|
name: "@lukoweb/apitogo",
|
|
4136
|
-
version: "0.1.
|
|
4136
|
+
version: "0.1.46",
|
|
4137
4137
|
type: "module",
|
|
4138
4138
|
sideEffects: [
|
|
4139
4139
|
"**/*.css",
|
|
@@ -8237,7 +8237,10 @@ async function getViteConfig(dir, configEnv) {
|
|
|
8237
8237
|
target: "es2022"
|
|
8238
8238
|
},
|
|
8239
8239
|
entries: [path22.posix.join(getZudokuRootDir(), "src/{app,lib}/**")],
|
|
8240
|
-
exclude: [
|
|
8240
|
+
exclude: [
|
|
8241
|
+
"@lukoweb/apitogo",
|
|
8242
|
+
"@lukoweb/apitogo-plugin-dev-portal-billing"
|
|
8243
|
+
],
|
|
8241
8244
|
include: [
|
|
8242
8245
|
"react-dom/client",
|
|
8243
8246
|
"@lukoweb/apitogo/icons",
|
package/package.json
CHANGED
package/src/vite/config.ts
CHANGED
|
@@ -194,7 +194,10 @@ export async function getViteConfig(
|
|
|
194
194
|
target: "es2022",
|
|
195
195
|
},
|
|
196
196
|
entries: [path.posix.join(getZudokuRootDir(), "src/{app,lib}/**")],
|
|
197
|
-
exclude: [
|
|
197
|
+
exclude: [
|
|
198
|
+
"@lukoweb/apitogo",
|
|
199
|
+
"@lukoweb/apitogo-plugin-dev-portal-billing",
|
|
200
|
+
],
|
|
198
201
|
include: [
|
|
199
202
|
"react-dom/client",
|
|
200
203
|
"@lukoweb/apitogo/icons",
|