accented 0.0.1-dev.3 → 0.0.1-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/accented.js +3 -3
- package/package.json +2 -2
- package/dist/whatever.d.ts +0 -2
- package/dist/whatever.d.ts.map +0 -1
- package/dist/whatever.js +0 -2
- package/dist/whatever.js.map +0 -1
package/dist/accented.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import axe from 'axe-core';
|
|
2
|
-
import TaskQueue from './task-queue';
|
|
3
|
-
import DomUpdater from './dom-updater';
|
|
4
|
-
import issuesToElements from './utils/issuesToElements';
|
|
2
|
+
import TaskQueue from './task-queue.js';
|
|
3
|
+
import DomUpdater from './dom-updater.js';
|
|
4
|
+
import issuesToElements from './utils/issuesToElements.js';
|
|
5
5
|
const defaultProps = {
|
|
6
6
|
outputToConsole: true,
|
|
7
7
|
initialDelay: 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "accented",
|
|
3
|
-
"version": "0.0.1-dev.
|
|
3
|
+
"version": "0.0.1-dev.4",
|
|
4
4
|
"description": "Continuous accessibility testing and issue highlighting for web development",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/accented.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"axe-core": "^4.10.2"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
|
-
"build": "tsc",
|
|
30
|
+
"build": "tsc && ./scripts/add-import-extensions.mjs",
|
|
31
31
|
"watch": "tsc --watch",
|
|
32
32
|
"test": "node --test --import tsx ./**/*.test.ts"
|
|
33
33
|
}
|
package/dist/whatever.d.ts
DELETED
package/dist/whatever.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"whatever.d.ts","sourceRoot":"","sources":["../src/whatever.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,IAAI,CAAC"}
|
package/dist/whatever.js
DELETED
package/dist/whatever.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"whatever.js","sourceRoot":"","sources":["../src/whatever.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,CAAC"}
|