File tree Expand file tree Collapse file tree 6 files changed +41
-1
lines changed Expand file tree Collapse file tree 6 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 11# OSX trash
22.DS_Store
33
4+ # Compile dir
5+ dist
6+
47# Logs
58logs
69* .log
Original file line number Diff line number Diff line change 1+ version : 0.4.{build}
2+
3+ platform :
4+ - x64
5+
6+ cache :
7+ - node_modules
8+ - app\node_modules
9+ - ' %APPDATA%\npm-cache'
10+ - ' %USERPROFILE%\.electron'
11+
12+ init :
13+ - git config --global core.autocrlf input
14+
15+ install :
16+ - git reset --hard HEAD
17+ - npm install npm -g
18+ - npm install electron-builder@next # force install next version to test electron-builder
19+ - npm install
20+ - npm prune
21+
22+ build_script :
23+ - node --version
24+ - npm --version
25+ - npm run dist:win64
26+
27+ test : off
Original file line number Diff line number Diff line change 44 "dev" : " electron ./app --debug" ,
55 "locale-sync" : " /usr/bin/env php ./apptools/locale-sync.php" ,
66 "test" : " eslint ./app/main.js ./app/js/*" ,
7- "postinstall" : " install-app-deps"
7+ "postinstall" : " install-app-deps" ,
8+ "dist" : " npm run dist:osx && npm run dist:win32 && npm run dist:win64" ,
9+ "dist:osx" : " build --platform darwin" ,
10+ "dist:linux" : " build --platform linux --arch=all" ,
11+ "dist:win32" : " build --platform win32 --arch ia32" ,
12+ "dist:win64" : " build --platform win32 --arch x64"
13+ },
14+ "build" : {
15+ "app-bundle-id" : " br.rafajaques.phpassistant" ,
16+ "app-category-type" : " public.app-category.utilities" ,
17+ "iconUrl" : " http://rafajaques.com.br/php-assistant/icon.ico"
818 },
919 "devDependencies" : {
1020 "electron-prebuilt" : " ^1.2.0" ,
You can’t perform that action at this time.
0 commit comments