Skip to content

Commit

Permalink
feat: add anchors, change configs (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
v8tenko authored Aug 29, 2024
1 parent 980c5e0 commit 756cb27
Show file tree
Hide file tree
Showing 14 changed files with 5,438 additions and 1,278 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run test:init
- run: npm run test
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
.idea
.env

/build
/plugin
/runtime
/coverage
/node_modules
node_modules

# libraries
npm-debug.log
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 756cb27

Please sign in to comment.