Skip to content

Commit

Permalink
Canonicalize package URLs.
Browse files Browse the repository at this point in the history
move to monopub, generate docs server-side
  • Loading branch information
hildjj committed Oct 27, 2024
1 parent ecafaf4 commit 0785471
Show file tree
Hide file tree
Showing 115 changed files with 4,850 additions and 42,586 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Publish Package to npmjs
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
cache: pnpm
- run: pnpm i -r
- run: npm run build
- run: npm run docs
- run: npm run copy
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs
publish_branch: gh-pages
destination_dir: docs
- run: monopub delete devDependencies,scripts
- run: monopub exec 'npm publish --access public --provenance'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
18 changes: 10 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
node_modules/
coverage/
.DS_Store
TAGS
.nyc_output/
.parcel-cache/
.vscode/
*.js.map
coverage/
docs/
jsconfig.json
typings/
typings.json
.vscode/
shrinkwrap.yaml
node_modules/
npm-debug.log
shrinkwrap.yaml
t.js
yarn.lock
TAGS
typings.json
typings/
yarn-error.log
yarn.lock
270 changes: 0 additions & 270 deletions docs/BinaryParseStream.html

This file was deleted.

Loading

0 comments on commit 0785471

Please sign in to comment.