Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@
"build": "tsc && rollup -c rollup.config.mjs",
"lint": "exit 0",
"test:unit": "vitest test/unit",
"test:package": "cd test/package && vitest",
"test:package": "npm run test:package:rollup && npm run test:package:vite",
"test:package:rollup": "cd test/package/rollup && vitest",
"test:package:vite": "cd test/package/vite && vitest",
"bump": "./scripts/bump.sh",
"release": "./scripts/release.sh"
},
Expand Down
2 changes: 2 additions & 0 deletions test/package/rollup/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package-lock.json
dist*
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { beforeEach, describe, test, expect } from 'vitest';
import { rollup } from 'rollup';
import { vol } from 'memfs';

import rollupConfig from './rollup.config';
import rollupConfig from './case-options.mjs';

describe('package test', () => {
describe('rollup options', () => {
beforeEach(() => {
vol.reset();
});
Expand Down
Loading
Loading