Skip to content
This repository was archived by the owner on Oct 11, 2025. It is now read-only.

Commit f0ca995

Browse files
committed
quick save: Wed Apr 30 03:10:31 MSK 2025
1 parent 3229a7f commit f0ca995

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

package-lock.json

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"@effect/language-service": "^0.8.1",
3434
"@effect/vitest": "^0.20.16",
3535
"@rollup/plugin-commonjs": "^28.0.3",
36+
"@rollup/plugin-json": "^6.1.0",
3637
"@rollup/plugin-node-resolve": "^16.0.1",
3738
"@rollup/plugin-terser": "^0.4.4",
3839
"@total-typescript/ts-reset": "^0.6.1",

rollup.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { nodeResolve } from '@rollup/plugin-node-resolve';
2+
import json from '@rollup/plugin-json';
23
import { visualizer } from 'rollup-plugin-visualizer';
34
import terser from '@rollup/plugin-terser';
45
import commonjs from '@rollup/plugin-commonjs';
@@ -14,6 +15,7 @@ export default {
1415
plugins: [
1516
nodeResolve(),
1617
commonjs(),
18+
json(),
1719
visualizer({
1820
sourcemap: true,
1921
filename: 'gh-page/bundled_deps/index.html',

0 commit comments

Comments
 (0)