Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
tags-ignore:
- "**"

permissions:
id-token: write

concurrency:
# ensure there is at most one execution of this workflow at any time
# if another workflow is "in progress", the queued workflow will be "pending"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
release:
types: [published]

permissions:
id-token: write

jobs:
on-release:
if: ${{ github.event.release.prerelease == true }}
Expand Down
600 changes: 300 additions & 300 deletions .yarn/releases/yarn-4.10.3.cjs → .yarn/releases/yarn-4.12.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.10.3.cjs
yarnPath: .yarn/releases/yarn-4.12.0.cjs
2 changes: 1 addition & 1 deletion javascript-create-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com:Jahia/javascript-modules.git",
"url": "git+https://github.com/Jahia/javascript-modules.git",
"directory": "javascript-create-module"
},
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions javascript-create-module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>npm publish --tag alpha --access public</arguments>
<arguments>npm publish --tag alpha --access public --provenance</arguments>
</configuration>
</execution>
<execution>
Expand Down Expand Up @@ -149,7 +149,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>npm publish --access public</arguments>
<arguments>npm publish --access public --provenance</arguments>
</configuration>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion javascript-modules-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com:Jahia/javascript-modules.git",
"url": "git+https://github.com/Jahia/javascript-modules.git",
"directory": "javascript-modules-library"
},
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions javascript-modules-library/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>npm publish --tag alpha --access public</arguments>
<arguments>npm publish --tag alpha --access public --provenance</arguments>
</configuration>
</execution>
<execution>
Expand Down Expand Up @@ -167,7 +167,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>npm publish --access public</arguments>
<arguments>npm publish --access public --provenance</arguments>
</configuration>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0"
},
"packageManager": "yarn@4.10.3"
"packageManager": "yarn@4.12.0"
}

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions tests/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.12.0.cjs
2 changes: 1 addition & 1 deletion tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
"mochawesome-report-generator": "^6.2.0",
"typescript": "^5.9.2"
},
"packageManager": "yarn@4.10.3"
"packageManager": "yarn@4.12.0"
}
2 changes: 1 addition & 1 deletion vite-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.1.0-SNAPSHOT",
"repository": {
"type": "git",
"url": "git+https://github.com:Jahia/javascript-modules.git",
"url": "git+https://github.com/Jahia/javascript-modules.git",
"directory": "vite-plugin"
},
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions vite-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>npm publish --tag alpha --access public</arguments>
<arguments>npm publish --tag alpha --access public --provenance</arguments>
</configuration>
</execution>
<execution>
Expand Down Expand Up @@ -141,7 +141,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>npm publish --access public</arguments>
<arguments>npm publish --access public --provenance</arguments>
</configuration>
</execution>
</executions>
Expand Down
Loading