Skip to content

Commit

Permalink
fix: add missing shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
lili2311 committed Jun 3, 2020
1 parent dc2978f commit 9f71c47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- snyk/scan:
fail-on-issues: true
monitor-on-build: true
token-variable: SNYK_TOKEN
token-variable: SNYK_TOKEN_PROD
- run: npx semantic-release
build-test:
docker:
Expand All @@ -25,7 +25,7 @@ jobs:
- snyk/scan:
fail-on-issues: true
monitor-on-build: false
token-variable: SNYK_TOKEN
token-variable: SNYK_TOKEN_PROD
- run: npx tsc
build-test-from-fork:
docker:
Expand Down
1 change: 1 addition & 0 deletions src/lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env node
export * from './import';
export * from './poll-import';
export * from './project';
Expand Down

0 comments on commit 9f71c47

Please sign in to comment.