silgi 0.8.33 → 0.8.35

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.
@@ -1,4 +1,4 @@
1
- const version = "0.8.33";
1
+ const version = "0.8.35";
2
2
  const devDependencies = {
3
3
  "@antfu/eslint-config": "^4.2.0",
4
4
  "@fastify/deepmerge": "^2.0.2",
package/dist/cli/run.mjs CHANGED
@@ -164,12 +164,11 @@ const run = defineCommand({
164
164
  }
165
165
  if (script.type === "function") {
166
166
  const jiti = createJiti(import.meta.url, {
167
- moduleCache: false,
168
- fsCache: false,
169
167
  alias: silgiConfig.alias
170
168
  });
171
- await jiti.evalModule(`(${script.handler})`, {
172
- filename: "path/to/file.ts",
169
+ const cleanHandler = script.handler.replace(/\n/g, "");
170
+ await jiti.evalModule(cleanHandler, {
171
+ filename: import.meta.url,
173
172
  async: true,
174
173
  conditions: silgiConfig.conditions
175
174
  });
@@ -1,4 +1,4 @@
1
- const version = "0.8.33";
1
+ const version = "0.8.35";
2
2
  const devDependencies = {
3
3
  "@antfu/eslint-config": "^4.2.0",
4
4
  "@fastify/deepmerge": "^2.0.2",
@@ -1,4 +1,4 @@
1
- const version = "0.8.33";
1
+ const version = "0.8.35";
2
2
  const devDependencies = {
3
3
  "@antfu/eslint-config": "^4.2.0",
4
4
  "@fastify/deepmerge": "^2.0.2",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.8.33",
4
+ "version": "0.8.35",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {