This repository was archived by the owner on Aug 12, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +2132
-5
lines changed
Expand file tree Collapse file tree 4 files changed +2132
-5
lines changed Original file line number Diff line number Diff line change 33/web /models /
44/build /
55.DS_Store
6+ /release /
Original file line number Diff line number Diff line change 33const fs = require ( 'fs' ) ;
44const utils = require ( './utils' ) ;
55
6- let files = fs . readdirSync ( __dirname + '/areas/' ) ;
6+ // let files = fs.readdirSync(__dirname + '/areas/')
7+ // .filter(n => n.endsWith(".json"));
8+ let files = [
9+ "13d79165.MLVL.json" ,
10+ "39f2de28.MLVL.json" ,
11+ "83f6ff6f.MLVL.json" ,
12+ "b1ac4d65.MLVL.json" ,
13+ "158efe17.MLVL.json" ,
14+ "3ef8237c.MLVL.json" ,
15+ "a8be6291.MLVL.json" ,
16+ "c13b09d1.MLVL.json"
17+ ] ;
718let dgrpLookup = new Map ( ) ;
819let areaHeaders = [ ] ;
920
Original file line number Diff line number Diff line change 11{
2- "name" : " PrimeWatch " ,
3- "description" : " A prime memory watcher (remote for Dolphin or Nintendont )" ,
2+ "name" : " prime-watch " ,
3+ "description" : " A prime memory watcher (remote for Dolphin)" ,
44 "author" : " Pwootage" ,
55 "version" : " 1.0.0" ,
66 "main" : " app/mainForm.js" ,
77 "dependencies" : {
88 "binary" : " ^0.3.0" ,
99 "binary-parser" : " ^1.1.5" ,
1010 "smalltalk" : " ^2.1.3"
11+ },
12+ "devDependencies" : {
13+ "electron" : " ^4.1.0" ,
14+ "electron-builder" : " ^20.39.0"
15+ },
16+ "scripts" : {
17+ "dist" : " yarn dist:win && yarn dist:linux && yarn dist:macOS" ,
18+ "dist:linux" : " electron-builder build --linux" ,
19+ "dist:win" : " electron-builder build --windows" ,
20+ "dist:macOS" : " electron-builder build --mac"
21+ },
22+ "build" : {
23+ "appId" : " com.pwootage.prime.watch" ,
24+ "productName" : " Prime Watch" ,
25+ "directories" : {
26+ "output" : " release/"
27+ },
28+ "win" : {
29+ "target" : [
30+ " zip"
31+ ]
32+ },
33+ "mac" : {
34+ "target" : [
35+ " dmg" , " zip"
36+ ]
37+ },
38+ "linux" : {
39+ "target" : [
40+ " tar.gz"
41+ ]
42+ }
1143 }
1244}
You can’t perform that action at this time.
0 commit comments