@internetarchive/modal-manager 0.3.1-alpha.6 → 0.3.1-alpha.8
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/.github/workflows/ci.yml
CHANGED
|
@@ -11,10 +11,10 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
|
|
13
13
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
15
|
-
- uses: actions/setup-node@
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
|
+
- uses: actions/setup-node@v4
|
|
16
16
|
with:
|
|
17
|
-
node-version:
|
|
17
|
+
node-version: 20.x
|
|
18
18
|
|
|
19
19
|
- name: Install dependencies
|
|
20
20
|
run: npm install
|
|
@@ -13,13 +13,13 @@ jobs:
|
|
|
13
13
|
runs-on: ubuntu-latest
|
|
14
14
|
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
17
|
with:
|
|
18
18
|
persist-credentials: false
|
|
19
19
|
|
|
20
|
-
- uses: actions/setup-node@
|
|
20
|
+
- uses: actions/setup-node@v4
|
|
21
21
|
with:
|
|
22
|
-
node-version:
|
|
22
|
+
node-version: 20
|
|
23
23
|
|
|
24
24
|
- name: Install dependencies
|
|
25
25
|
run: npm install
|
|
@@ -19,11 +19,11 @@ jobs:
|
|
|
19
19
|
runs-on: ubuntu-20.04
|
|
20
20
|
steps:
|
|
21
21
|
- name: Checkout
|
|
22
|
-
uses: actions/checkout@
|
|
22
|
+
uses: actions/checkout@v4
|
|
23
23
|
|
|
24
|
-
- uses: actions/setup-node@
|
|
24
|
+
- uses: actions/setup-node@v4
|
|
25
25
|
with:
|
|
26
|
-
node-version:
|
|
26
|
+
node-version: 20
|
|
27
27
|
|
|
28
28
|
- name: Install and Build
|
|
29
29
|
run: |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@internetarchive/modal-manager",
|
|
3
|
-
"version": "0.3.1-alpha.
|
|
3
|
+
"version": "0.3.1-alpha.8",
|
|
4
4
|
"description": "A Modal Manager Web Component",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"lint": "npm run lint:eslint && npm run lint:prettier",
|
|
25
25
|
"format": "npm run format:eslint && npm run format:prettier",
|
|
26
26
|
"circular": "madge --circular .",
|
|
27
|
-
"test": "tsc && yarn run lint && yarn run circular &&
|
|
28
|
-
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"
|
|
27
|
+
"test": "tsc && yarn run lint && yarn run circular && web-test-runner --coverage",
|
|
28
|
+
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"web-test-runner --watch\"",
|
|
29
29
|
"publish:alpha": "npm run test && npm run prepare && npm version prerelease --preid alpha && npm publish --tag alpha"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"throttle-debounce": "^5.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
+
"@esm-bundle/chai": "^4.3.4-fix.0",
|
|
40
41
|
"@open-wc/eslint-config": "^9.0.0",
|
|
41
42
|
"@open-wc/testing": "^4.0.0",
|
|
42
43
|
"@types/mocha": "^10.0.6",
|
|
@@ -47,8 +48,6 @@
|
|
|
47
48
|
"@web/dev-server": "^0.0.0",
|
|
48
49
|
"@web/test-runner": "^0.18.0",
|
|
49
50
|
"concurrently": "^8.0.0",
|
|
50
|
-
"deepmerge": "^3.2.0",
|
|
51
|
-
"es-dev-server": "^1.23.0",
|
|
52
51
|
"eslint": "^8.18.0",
|
|
53
52
|
"eslint-config-prettier": "^9.0.0",
|
|
54
53
|
"eslint-plugin-html": "^7.1.0",
|
|
@@ -70,6 +69,9 @@
|
|
|
70
69
|
"typescript": "^4.7.4",
|
|
71
70
|
"vite": "^4.4.11"
|
|
72
71
|
},
|
|
72
|
+
"publishConfig": {
|
|
73
|
+
"access": "public"
|
|
74
|
+
},
|
|
73
75
|
"eslintConfig": {
|
|
74
76
|
"parser": "@typescript-eslint/parser",
|
|
75
77
|
"extends": [
|