diff --git a/README.md b/README.md index ce4d7a0..b1a1c84 100644 --- a/README.md +++ b/README.md @@ -63,13 +63,13 @@ To run the app (with hot reload): Your code must follow the [standardjs](https://standardjs.com/) rules : ```sh -> yarn test +> yarn lint ``` ## Build ```sh -> yarn dist +> yarn build ``` The binaries will be created in the `dist` folder. diff --git a/package.json b/package.json index ee82b5d..95b4fbf 100644 --- a/package.json +++ b/package.json @@ -19,11 +19,11 @@ "standard": "^12.0.1" }, "scripts": { - "start": "npx gulp", - "dist": "electron-builder", - "dist-portable": "electron-builder -w portable", + "start": "gulp", + "build": "electron-builder", "publish": "build --win -p always", - "test": "npx standard" + "lint": "npx standard", + "test": "echo \"Error: no test specified\" && exit 1" }, "build": { "appId": "com.gelbooru-client.app",