Browse Source

Put back `yarn dist:dir`

master
meriadec 7 years ago
parent
commit
c7404635e8
No known key found for this signature in database GPG Key ID: 1D2FC2305E2CB399
  1. 2
      package.json
  2. 3
      scripts/dist-dir.sh

2
package.json

@ -8,7 +8,7 @@
"license": "MIT",
"scripts": {
"compile": "bash ./scripts/compile.sh",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"dist:dir": "bash ./scripts/dist-dir.sh",
"dist": "bash ./scripts/dist.sh",
"test": "jest",
"flow": "flow",

3
scripts/dist-dir.sh

@ -0,0 +1,3 @@
#/bin/bash
yarn compile && DEBUG=electron-builder electron-builder --dir -c.compression=store -c.mac.identity=null
Loading…
Cancel
Save