Skip to content

Commit

Permalink
Fix rollup config for NodeJS 16 (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 authored May 5, 2022
1 parent 700c191 commit 2fb0145
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-pr-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Set up token
id: token
# This is a base64-encoded OAuth token for the "project-openubl-preview-bot" GitHub account, which has no secure access.
run: echo "::set-output name=GH_TOKEN::`echo 'Z2hwX1dySmRZd1dTdkFVeHlFUDR2bUl4TUhBaHZaeURnNjQxMUNUTAo=' | base64 -d`"
run: echo "::set-output name=GH_TOKEN::`echo 'Z2hwX2Z0VnB1MmdQdXYxSldsMm9nZkoyOFMydzdDTEZvNjBOQXVIZAo=' | base64 -d`"
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
Expand Down
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ export default {
input: 'src/index.ts',
output: [
{
file: packageJson.main,
dir: packageJson.main,
format: 'cjs',
sourcemap: true,
},
{
file: packageJson.module,
dir: packageJson.module,
format: 'esm',
sourcemap: true,
},
Expand Down

0 comments on commit 2fb0145

Please sign in to comment.