aria-api

access ARIA information from JavaScript
git clone https://git.ce9e.org/aria-api.git

commit
d1e55b782fec41c41d3f77fd6cc46c4d6acd9196
parent
69f6eeda6d58eead7cb1ff873e9593237fa40377
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2024-11-01 12:40
cleanup switch to rollup

Diffstat

M .github/workflows/main.yml 2 +-
M Makefile 2 +-
M package.json 5 ++---

3 files changed, 4 insertions, 5 deletions


diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml

@@ -9,6 +9,6 @@ jobs:
    9     9       run: npm install
   10    10     - run: mkdir -p dist
   11    11     - name: build
   12    -1       run: npx browserify index.js -o dist/aria.js -s aria
   -1    12       run: npx rollup index.js -o dist/aria.js -f umd -n aria
   13    13     - name: test
   14    14       run: npx mocha-headless-chrome -a no-sandbox -f test/index.html

diff --git a/Makefile b/Makefile

@@ -1,6 +1,6 @@
    1     1 dist/aria.js: index.js lib/*.js
    2     2 	mkdir -p dist
    3    -1 	rollup $< -o $@ -f umd -n aria
   -1     3 	npx rollup $< -o $@ -f umd -n aria
    4     4 
    5     5 wpt-master:
    6     6 	wget https://github.com/web-platform-tests/wpt/archive/refs/heads/master.zip -O wpt-master.zip

diff --git a/package.json b/package.json

@@ -11,11 +11,10 @@
   11    11   "author": "Tobias Bengfort <tobias.bengfort@posteo.de>",
   12    12   "license": "MIT",
   13    13   "devDependencies": {
   14    -1     "brfs": "^2.0.0",
   15    -1     "browserify": "^17.0.0",
   16    14     "expect": "^1.20.2",
   17    15     "mocha": "^10.2.0",
   18    -1     "mocha-headless-chrome": "^4.0.0"
   -1    16     "mocha-headless-chrome": "^4.0.0",
   -1    17     "rollup": "^4.24.3"
   19    18   },
   20    19   "files": [
   21    20     "index.js",