silgi 0.7.9 → 0.7.10

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.7.9";
1
+ const version = "0.7.10";
2
2
  const packageJson = {
3
3
  version: version};
4
4
 
@@ -234,7 +234,6 @@ async function readCoreFile(silgi) {
234
234
  debug: silgi.options.debug,
235
235
  alias: silgi.options.alias
236
236
  });
237
- console.log("injectedResult", silgi.options.conditions);
238
237
  const coreFile = await jiti.evalModule(
239
238
  injectedResult.code,
240
239
  {
@@ -1,3 +1,3 @@
1
- const version = "0.7.9";
1
+ const version = "0.7.10";
2
2
 
3
3
  export { version };
@@ -1,3 +1,3 @@
1
- const version = "0.7.9";
1
+ const version = "0.7.10";
2
2
 
3
3
  export { version };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.7.9",
4
+ "version": "0.7.10",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {
@@ -173,7 +173,7 @@
173
173
  "lint": "eslint .",
174
174
  "lint:fix": "eslint . --fix",
175
175
  "silgi": "tsx cli/index.ts",
176
- "pb": "pnpm unbuild && pnpm publish --no-git-checks --access public",
176
+ "release": "pnpm unbuild && pnpm publish --no-git-checks --access public",
177
177
  "generate": "pnpm --filter './examples/**' silgi:prepare",
178
178
  "gen-presets": "pnpm jiti scripts/gen-presets.ts",
179
179
  "all:delete": "find . -type d \\( -name \"node_modules\" -o -name \"dist\" \\) -prune -exec rm -rf {} +"