Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: move build-native.js to tools #89

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
"lint": "eslint . && remark .",
"install": "npm run rebuild-node",
"build": "npm run build-node && npm run build-browser",
"build-node": "node build-native",
"rebuild-node": "node build-native --rebuild",
"build-node": "node tools/build-native",
"rebuild-node": "node tools/build-native --rebuild",
"build-browser": "webpack --progress --colors",
"prepublish": "npm run build-browser",
"pretest": "npm run build-node"
Expand Down
2 changes: 2 additions & 0 deletions build-native.js → tools/build-native.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node

'use strict';

const fs = require('fs');
Expand Down