Skip to content

Commit

Permalink
Merge branch 'release/0.6.3'.
Browse files Browse the repository at this point in the history
  • Loading branch information
petrbroz committed May 20, 2019
2 parents 11d890e + 77f6010 commit 401b927
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ deploy:
tags: true
- provider: releases
api_key: $GITHUB_TOKEN
file_glob: true
file: bin/*
file:
- "bin/node10-win-x64.tar.gz"
- "bin/node10-macos-x64.tar.gz"
on:
tags: true
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "forge-cli-utils",
"version": "0.6.2",
"version": "0.6.3",
"description": "Command line tools for Autodesk Forge services.",
"bin": {
"forge-dm": "src/forge-dm.js",
"forge-da": "src/forge-da.js",
"forge-md": "src/forge-md.js"
},
"scripts": {
"build": "npm run build:win",
"build:win": "export FORGE_CLI_ARCH=node10-win-x64 && npm run pack && tar czf bin/forge-cli-win.tar.gz bin/$FORGE_CLI_ARCH/* && rm -rf bin/$FORGE_CLI_ARCH",
"build": "npm run build:win && npm run build:macos",
"build:win": "export FORGE_CLI_ARCH=node10-win-x64 && npm run pack && tar czf bin/$FORGE_CLI_ARCH.tar.gz bin/$FORGE_CLI_ARCH/* && rm -rf bin/$FORGE_CLI_ARCH",
"build:macos": "export FORGE_CLI_ARCH=node10-macos-x64 && npm run pack && tar czf bin/$FORGE_CLI_ARCH.tar.gz bin/$FORGE_CLI_ARCH/* && rm -rf bin/$FORGE_CLI_ARCH",
"pack": "npm run pack:dm && npm run pack:md && npm run pack:da",
"pack:dm": "pkg src/forge-dm.js --targets $FORGE_CLI_ARCH --out-path bin/$FORGE_CLI_ARCH",
"pack:md": "pkg src/forge-md.js --targets $FORGE_CLI_ARCH --out-path bin/$FORGE_CLI_ARCH",
Expand Down

0 comments on commit 401b927

Please sign in to comment.