File tree 6 files changed +41
-1
lines changed
6 files changed +41
-1
lines changed Original file line number Diff line number Diff line change 1
1
# OSX trash
2
2
.DS_Store
3
3
4
+ # Compile dir
5
+ dist
6
+
4
7
# Logs
5
8
logs
6
9
* .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 4
4
"dev" : " electron ./app --debug" ,
5
5
"locale-sync" : " /usr/bin/env php ./apptools/locale-sync.php" ,
6
6
"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"
8
18
},
9
19
"devDependencies" : {
10
20
"electron-prebuilt" : " ^1.2.0" ,
You can’t perform that action at this time.
0 commit comments