silgi 0.8.32 → 0.8.34

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.32";
1
+ const version = "0.8.34";
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
@@ -3,6 +3,7 @@ import { existsSync, promises, readFileSync } from 'node:fs';
3
3
  import * as p from '@clack/prompts';
4
4
  import { defineCommand } from 'citty';
5
5
  import { consola } from 'consola';
6
+ import { createJiti } from 'dev-jiti';
6
7
  import { resolve } from 'pathe';
7
8
  import color from 'picocolors';
8
9
  import { version } from 'silgi/meta';
@@ -162,8 +163,18 @@ const run = defineCommand({
162
163
  execSync(script.handler, { stdio: "inherit" });
163
164
  }
164
165
  if (script.type === "function") {
165
- const fn = eval(`(${script.handler})`);
166
- fn();
166
+ const jiti = createJiti(import.meta.url, {
167
+ moduleCache: false,
168
+ fsCache: false,
169
+ alias: silgiConfig.alias
170
+ });
171
+ const cleanHandler = script.handler.replace(/\n/g, "");
172
+ await jiti.evalModule(cleanHandler, {
173
+ filename: "file.ts",
174
+ async: true,
175
+ forceTranspile: true,
176
+ conditions: silgiConfig.conditions
177
+ });
167
178
  }
168
179
  }
169
180
  });
@@ -1,4 +1,4 @@
1
- const version = "0.8.32";
1
+ const version = "0.8.34";
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.32";
1
+ const version = "0.8.34";
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.32",
4
+ "version": "0.8.34",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {