Skip to content

Commit fa99a53

Browse files
committed
Update sanitizer and npm publishing
- Update `.nvmrc` and `npm-publish.yml` - Update polyfills/sanitizer
1 parent 09851c3 commit fa99a53

File tree

6 files changed

+108
-12
lines changed

6 files changed

+108
-12
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,11 @@ jobs:
2525
cache: npm
2626
registry-url: https://registry.npmjs.org
2727
- name: Install dependencies
28-
run: npm ci --ignore-scripts --no-audit --fund-no
28+
run: npm ci --no-audit --no-fund
2929
- name: Run tests
3030
run: npm test
3131
- name: Build Package
3232
run: npm run build --if-present
3333
- name: Publish to npm
3434
run: npm publish --provenance --access public
35-
env:
36-
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
3735

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.9.0
1+
24.10.0

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v0.1.6] - 2025-11-18
11+
12+
### Changed
13+
- Update `.nvmrc` and `npm-publish.yml`
14+
- Update polyfills/sanitizer
15+
1016
## [v0.1.6] - 2024-10-26
1117

1218
### Added

package-lock.json

Lines changed: 94 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aegisjsproject/component",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"description": "Base component using `@aegisjsproject/core` & `@aegisjsproject/styles`",
55
"keywords": [
66
"aegis",
@@ -94,12 +94,13 @@
9494
"@aegisjsproject/state": "^1.0.2",
9595
"@rollup/plugin-node-resolve": "^16.0.0",
9696
"@shgysk8zer0/eslint-config": "^1.0.1",
97+
"@shgysk8zer0/polyfills": "^0.5.1",
9798
"eslint": "^9.10.0",
9899
"http-server": "^14.1.1",
99100
"rollup": "^4.9.6"
100101
},
101102
"dependencies": {
102-
"@aegisjsproject/core": "^0.2.0",
103+
"@aegisjsproject/core": "^0.2.5",
103104
"@aegisjsproject/styles": "^0.2.0"
104105
}
105106
}

test/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="color-scheme" content="light dark" />
77
<meta http-equiv="Content-Security-Policy"
88
content="default-src 'none';
9-
script-src 'self' https://unpkg.com/@shgysk8zer0/ https://unpkg.com/@aegisjsproject/ 'sha384-vcCr7qWz8Z6foX8DSh8n9PnNVZZwjv98jj4ButH/ACPlPxscPwMySuPtjhaqnj6c';
9+
script-src 'self' https://unpkg.com/@shgysk8zer0/ https://unpkg.com/@aegisjsproject/ 'sha384-/4t2o3Ok5q2Z/fokJmGIDCeOo2E5BYV5n7m2zpqjmymccqplm5MYfZIjcp5AUGHB';
1010
style-src 'self' blob: data:;
1111
img-src 'self';
1212
connect-src 'self' https://icanhazdadjoke.com https://unpkg.com/@shgysk8zer0/;
@@ -25,12 +25,13 @@
2525
"@aegisjsproject/component/": "../",
2626
"@aegisjsproject/state": "../node_modules/@aegisjsproject/state/state.mjs",
2727
"@aegisjsproject/router": "../node_modules/@aegisjsproject/router/router.mjs",
28+
"@aegisjsproject/callback-registry": "/node_modules/@aegisjsproject/callback-registry/callbackRegistry.js",
2829
"@aegisjsproject/": "../node_modules/@aegisjsproject/",
2930
"@shgysk8zer0/": "https://unpkg.com/@shgysk8zer0/"
3031
}
3132
}
3233
</script>
33-
<script type="application/javascript" defer="" referrerpolicy="no-referrer" crossorigin="anonymous" integrity="sha256-ioMplm3/NbRGxz6jHKnbyb4NHkTYfP/FAXcPwPquVdk=" src="https://unpkg.com/@shgysk8zer0/polyfills@0.4.2/all.min.js" fetchpriority="auto"></script>
34+
<script type="application/javascript" defer="" referrerpolicy="no-referrer" crossorigin="anonymous" src="/node_modules/@shgysk8zer0/polyfills/browser.min.js" fetchpriority="auto"></script>
3435
<script type="application/javascript" defer="" referrerpolicy="no-referrer" crossorigin="anonymous" integrity="sha256-R0JDqpQmNTidjyYggk9uQRqu9ypLx95G8HLVWIed80Q=" src="https://unpkg.com/@shgysk8zer0/kazoo@1.0.7/harden.js" fetchpriority="auto"></script>
3536
<script type="module" referrerpolicy="no-referrer" src="./index.js"></script>
3637
</head>

0 commit comments

Comments
 (0)