-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
* commit 'dcf3dbb48979291fb91301610de9e417e0ab7b79': (43 commits) feat: LSTypeIsPackage for file associations fix: Trim suffix from wine version (electron-userland#1033) fix: Stub Executables missing in Squirrel.Windows 1.5.1 fix: order of platform and arch npm env vars (electron-userland#1029) feat: Set platform npm environment variable feat: Use Electron.Net to send http requests for auto updater docs: typo (electron-userland#1026) refactor: reexport HttpError feat(appx): more customizable manifest fields chore: prefer const feat: 32 bit appx fix: yarn detection feat: update Squirrel.Windows to 1.5.1 fix: update nsis to 3.0.1 docs: Added details about setting AUMID for Windows 8/8.1 notifications. fix: update nsis to 3.0.1 test: attempt to make Win CI green test: use yarn on Appveyor fix: ENOENT for symlinks because directory was not created fix(electron-auto-updater): load default provider only if custom was not set ... # Conflicts: # src/cli/install-app-deps.ts # src/cli/node-gyp-rebuild.ts # src/packager.ts # src/publish/restApiRequest.ts # src/targets/nsis.ts # src/util/httpRequest.ts # src/yarn.ts
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
env: { | ||
development: { | ||
plugins: [ | ||
[ | ||
"transform-async-to-module-method", | ||
{ | ||
module: "bluebird-lst-c", | ||
method: "coroutine" | ||
} | ||
], | ||
"transform-es2015-parameters", | ||
"transform-es2015-spread", | ||
"transform-es2015-destructuring", | ||
"array-includes", | ||
[ | ||
"transform-inline-imports-commonjs", | ||
{ | ||
excludeModules: ["path"] | ||
} | ||
], | ||
], | ||
}, | ||
test: { | ||
sourceMaps: "inline", | ||
plugins: [ | ||
[ | ||
"transform-async-to-module-method", | ||
{ | ||
module: "bluebird-lst-c", | ||
method: "coroutine" | ||
} | ||
], | ||
[ | ||
"transform-inline-imports-commonjs", | ||
{ | ||
excludeModules: ["path"] | ||
} | ||
], | ||
] | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,31 @@ | ||
node_modules/ | ||
*.log | ||
out/ | ||
|
||
#**/out/**/* | ||
#!**/*js.snap | ||
|
||
dist/ | ||
|
||
/.idea/compiler.xml | ||
/.idea/encodings.xml | ||
/.idea/copyright/profiles_settings.xml | ||
/.idea/workspace.xml | ||
/.idea/copyright/ | ||
/.idea/deployment.xml | ||
/.idea/shelf/ | ||
|
||
/docs/.idea/ | ||
|
||
/typings/browser/ | ||
/typings/browser.d.ts | ||
/typings/main.d.ts | ||
|
||
.DS_Store | ||
.idea/shelf/ | ||
|
||
/test/typings/electron-builder.d.ts | ||
/test/typings/electron-auto-updater.d.ts | ||
/test/typings/electron-auto-updater.d.ts | ||
|
||
/nsis-auto-updater/out/ | ||
/out/ | ||
# to not exclude .js.snap (jest snapshots) | ||
/test/out/**/*.js | ||
/test/out/**/*.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"userBlacklist": ["develar"] | ||
} |