-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish package to JSR in addition to npm.
- Loading branch information
1 parent
7d0e83d
commit c44297a
Showing
6 changed files
with
79 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Publish package to npm whenever a release is pushed. | ||
# See https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | ||
name: Publish to JSR | ||
on: [workflow_call] | ||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm ci | ||
# Can we get this to use “deno publish”? | ||
# - run: deno publish | ||
- run: npx jsr publish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/bin/bash | ||
|
||
# Wrapper around “npm version” which appends additional logic to also update the | ||
# “deno.json” file which controls how we publish to JSR. | ||
|
||
# Exit upon any failure. I.e., make script strictly sequential. | ||
set -e | ||
|
||
# Bail if we don’t have a version string for some reason. | ||
if [ -z "${1}" ] | ||
then | ||
npm version | ||
echo "Pass in a version string (e.g., 1.0.0-rc.58)." | ||
exit 0 | ||
fi | ||
|
||
# Bail if a keyword is being used. We cannot currently support that. | ||
for keyword in "major" "minor" "patch" "premajor" "preminor" "prepatch" "prerelease" "from-git" | ||
do | ||
if [ "$1" = "$keyword" ] | ||
then | ||
echo "Version keywords are not allowed." | ||
exit 1 | ||
fi | ||
done | ||
|
||
# Print current version information. | ||
npm version | ||
|
||
# Bump version in package.json using npm version itself. This ensures that we | ||
# stay anchored to first-class tooling. | ||
npm version "${1}" | ||
|
||
# Get pointers to files we need to manually update. | ||
root_directory="$(dirname "$(realpath "${0}")")" | ||
|
||
# Bump version in deno.json. | ||
deno_json_file="${root_directory}/deno.json" | ||
deno_json_find="\"version\": \"[^\"]*\"" | ||
deno_json_repl="\"version\": \"${1}\"" | ||
next_deno_json_file=$(sed "s/${deno_json_find}/${deno_json_repl}/g" "${deno_json_file}") | ||
echo "updating \"${deno_json_file}\"" | ||
echo "${next_deno_json_file}" > "${deno_json_file}" | ||
|
||
# Amend the commit that should have been created from the earlier `npm version` command. | ||
git add "${deno_json_file}" | ||
git commit --amend --no-edit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"name": "@netflix/x-element", | ||
"version": "1.0.0-rc.58", | ||
"exports": "./x-element.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters