Skip to content

Commit

Permalink
[fix] CSS custom property setting
Browse files Browse the repository at this point in the history
[optimize] enable NPM provenance
[optimize] update Upstream packages
  • Loading branch information
TechQuery committed Oct 26, 2024
1 parent 7faa966 commit 877c3dd
Show file tree
Hide file tree
Showing 6 changed files with 709 additions and 567 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
jobs:
Build-and-Publish:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4

Expand All @@ -23,7 +26,7 @@ jobs:
run: pnpm i --frozen-lockfile

- name: Build & Publish
run: npm publish
run: npm publish --access public --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dom-renderer",
"version": "2.3.0",
"version": "2.3.1",
"license": "LGPL-3.0-or-later",
"author": "shiy2008@gmail.com",
"description": "A light-weight DOM Renderer supports Web components standard & TypeScript language",
Expand All @@ -25,27 +25,27 @@
"main": "dist/index.js",
"dependencies": {
"declarative-shadow-dom-polyfill": "^0.4.0",
"tslib": "^2.7.0",
"tslib": "^2.8.0",
"web-streams-polyfill": "^4.0.0",
"web-utility": "^4.4.0"
"web-utility": "^4.4.1"
},
"peerDependencies": {
"happy-dom": "^14"
},
"devDependencies": {
"@happy-dom/jest-environment": "^14.12.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.5",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.1",
"happy-dom": "^14.12.3",
"husky": "^9.1.5",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.7",
"typedoc-plugin-mdn-links": "^3.2.12",
"typescript": "~5.6.2"
"typedoc": "^0.26.10",
"typedoc-plugin-mdn-links": "^3.3.4",
"typescript": "~5.6.3"
},
"prettier": {
"singleQuote": true,
Expand Down
Loading

0 comments on commit 877c3dd

Please sign in to comment.