Skip to content

Commit

Permalink
feat: add anchors, change configs
Browse files Browse the repository at this point in the history
  • Loading branch information
v8tenko committed Aug 29, 2024
1 parent 980c5e0 commit dacf6ac
Show file tree
Hide file tree
Showing 10 changed files with 75 additions and 11,584 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
.idea
.env

/build
/plugin
/runtime
/coverage
/node_modules

Expand Down
4 changes: 2 additions & 2 deletions esbuild/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const common = {
const plugin = {
...common,
entryPoints: ['src/plugin/index.ts'],
outfile: outDir + 'plugin/index.js',
outfile: 'plugin/index.js',
platform: 'node',
packages: 'external',
}
Expand All @@ -28,7 +28,7 @@ const plugin = {
const runtime = {
...common,
entryPoints: ['src/runtime/index.ts'],
outfile: outDir + 'runtime/index.js',
outfile: 'runtime/index.js',
minify: true,
platform: 'browser',
plugins: [sassPlugin()],
Expand Down
Loading

0 comments on commit dacf6ac

Please sign in to comment.