Skip to content

Commit

Permalink
chore: synk pkg version
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Mar 17, 2024
1 parent 2bf159d commit 24bc8f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_PROVENANCE: true
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_BRANCH: 'main'
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zurk",
"version": "0.0.0",
"version": "0.0.30",
"description": "A generic process spawner",
"type": "module",
"main": "target/cjs/index.cjs",
Expand Down
4 changes: 2 additions & 2 deletions src/scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const { entry, external, bundle, minify, sourcemap, license, format, cwd: _cwd }
const plugins = []
const cwd = Array.isArray(_cwd) ? _cwd[_cwd.length - 1] : _cwd
const entryPoints = entry.includes('*')
? await glob(unwrapQuotes(entry.split(':')), { absolute: false, onlyFiles: true, cwd })
: unwrapQuotes(entry.split(':'))
? await glob(unwrapQuotes(entry).split(':'), { absolute: false, onlyFiles: true, cwd })
: unwrapQuotes(entry).split(':')

const _bundle = bundle !== 'none' && !process.argv.includes('--no-bundle')
const _external = _bundle
Expand Down

0 comments on commit 24bc8f7

Please sign in to comment.