Skip to content

Commit

Permalink
chore: fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
fwouts committed Dec 16, 2024
1 parent 52777eb commit 26e78f3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
16 changes: 8 additions & 8 deletions scripts/release-apps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,42 +28,42 @@ async function main() {
const {
default: { version: coreVersion },
} = await import("../core/package.json", {
type: { type: "json" },
with: { type: "json" },
});
const {
default: { version: vfsVersion },
} = await import("../vfs/package.json", {
type: { type: "json" },
with: { type: "json" },
});
const {
default: { version: preactPluginVersion },
} = await import("../framework-plugins/preact/package.json", {
type: { type: "json" },
with: { type: "json" },
});
const {
default: { version: reactPluginVersion },
} = await import("../framework-plugins/react/package.json", {
type: { type: "json" },
with: { type: "json" },
});
const {
default: { version: solidPluginVersion },
} = await import("../framework-plugins/solid/package.json", {
type: { type: "json" },
with: { type: "json" },
});
const {
default: { version: sveltePluginVersion },
} = await import("../framework-plugins/svelte/package.json", {
type: { type: "json" },
with: { type: "json" },
});
const {
default: { version: vue2PluginVersion },
} = await import("../framework-plugins/vue2/package.json", {
type: { type: "json" },
with: { type: "json" },
});
const {
default: { version: vue3PluginVersion },
} = await import("../framework-plugins/vue3/package.json", {
type: { type: "json" },
with: { type: "json" },
});
const releaseDirPath = path.join(
__dirname,
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
"extends": "./tsconfig.base.json",
"compilerOptions": {
"resolveJsonModule": true
},
"ts-node": {
"transpileOnly": true
}
}

0 comments on commit 26e78f3

Please sign in to comment.