Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
V1.5.0 (#384)
Browse files Browse the repository at this point in the history
* bump version to 1.5

* fix nupkg file name
  • Loading branch information
zeke authored Jul 24, 2018
1 parent 1236c1c commit 79a1d3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "electron-api-demos",
"productName": "Electron API Demos",
"version": "1.3.0",
"version": "1.5.0",
"description": "Electron interactive API demos",
"main": "main.js",
"bin": "cli.js",
Expand All @@ -16,7 +16,7 @@
"package:sign-exe": "signcode './out/Electron API Demos-win32-ia32/Electron API Demos.exe' --cert ~/electron-api-demos.p12 --prompt --name 'Electron API Demos' --url 'http://electron.atom.io'",
"package:installer": "node ./script/installer.js",
"package:sign-installer": "signcode './out/windows-installer/ElectronAPIDemosSetup.exe' --cert ~/electron-api-demos.p12 --prompt --name 'Electron API Demos' --url 'http://electron.atom.io'",
"package:mas": "./script/mas.sh",
"xpackage:mas": "./script/mas.sh",
"windows-store": "node ./script/windows-store.js",
"release": "node ./script/release.js",
"prepack": "check-for-leaks",
Expand Down
4 changes: 2 additions & 2 deletions script/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ function zipAssets () {
name: 'ElectronAPIDemosSetup.exe',
path: path.join(outPath, 'windows-installer', 'ElectronAPIDemosSetup.exe')
}, {
name: `ElectronAPIDemos-${version}-full.nupkg`,
path: path.join(outPath, 'windows-installer', `ElectronAPIDemos-${version}-full.nupkg`)
name: `electron-api-demos-${version}-full.nupkg`,
path: path.join(outPath, 'windows-installer', `electron-api-demos-${version}-full.nupkg`)
}])
})
}
Expand Down

0 comments on commit 79a1d3f

Please sign in to comment.