Skip to content

Commit

Permalink
cleanup switch to rollup
Browse files Browse the repository at this point in the history
  • Loading branch information
xi committed Nov 1, 2024
1 parent 69f6eed commit d1e55b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
run: npm install
- run: mkdir -p dist
- name: build
run: npx browserify index.js -o dist/aria.js -s aria
run: npx rollup index.js -o dist/aria.js -f umd -n aria
- name: test
run: npx mocha-headless-chrome -a no-sandbox -f test/index.html
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dist/aria.js: index.js lib/*.js
mkdir -p dist
rollup $< -o $@ -f umd -n aria
npx rollup $< -o $@ -f umd -n aria

wpt-master:
wget https://github.com/web-platform-tests/wpt/archive/refs/heads/master.zip -O wpt-master.zip
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@
"author": "Tobias Bengfort <[email protected]>",
"license": "MIT",
"devDependencies": {
"brfs": "^2.0.0",
"browserify": "^17.0.0",
"expect": "^1.20.2",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0"
"mocha-headless-chrome": "^4.0.0",
"rollup": "^4.24.3"
},
"files": [
"index.js",
Expand Down

0 comments on commit d1e55b7

Please sign in to comment.