From b904f590c831d7f7b4c1310ccae9b0eed4c65fe0 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 10 Mar 2016 14:46:19 -0800 Subject: [PATCH] rename build.js -> package.js --- README.md | 8 ++++---- bin/{build.js => package.js} | 0 package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename bin/{build.js => package.js} (100%) diff --git a/README.md b/README.md index 26d31f6e..48c965c1 100644 --- a/README.md +++ b/README.md @@ -28,14 +28,14 @@ $ npm install $ npm start ``` -### Build binaries +### Package app + +Builds app binaries for OS X, Linux, and Windows. ``` -$ npm run build +$ npm run package ``` -Builds the app for OS X, Linux, and Windows, using [electron-packager](https://github.com/maxogden/electron-packager). - ## License diff --git a/bin/build.js b/bin/package.js similarity index 100% rename from bin/build.js rename to bin/package.js diff --git a/package.json b/package.json index 1978864e..800049f0 100644 --- a/package.json +++ b/package.json @@ -45,8 +45,8 @@ "url": "git://github.com/feross/webtorrent-app.git" }, "scripts": { - "build": "node ./bin/build.js", "debug": "DEBUG=* electron .", + "package": "node ./bin/package.js", "start": "electron .", "test": "standard", "update-authors": "./bin/update-authors.sh"