@overwolf/ow-electron 19.0.8 → 19.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/checksums.json CHANGED
@@ -46,7 +46,7 @@
46
46
  "electron-v19.0.7-win32-x64-pdb.zip": "418e055ba22b1c2408a0631b51c14061e764be54e5eb1fe6a6cb5ab0c2754388",
47
47
  "electron-v19.0.7-win32-x64-symbols.zip": "997d4f82b8ce2cfea71a02646f3b1581ea4207987f3e7d71cea96da81b1ca59d",
48
48
  "electron-v19.0.7-win32-x64-toolchain-profile.zip": "3a5d2888ac992d063c6219cb20f73182ee02f25935f0f73bd7ed4ee8cd719376",
49
- "ow-electron-v19.0.8-win32-x64.zip": "a849d4321a1aac87ab4eff9de12103badc8fc0592109c306a100fb358da88e1a",
49
+ "ow-electron-v19.0.9-win32-x64.zip": "29D1744C9BEA1C0AC9577F856A57BED4249A8554CAAD92DF2023706907057AC8",
50
50
  "electron.d.ts": "74dc610588cd0f63a55c1337101f6bcef121e4dd19af99cd99cdb5cdbb14554a",
51
51
  "ffmpeg-v19.0.7-darwin-arm64.zip": "dc7e141149d193b9dcf701acbbd7da422c9fa46801dfc61e5a9804bc3b0b30e2",
52
52
  "ffmpeg-v19.0.7-darwin-x64.zip": "d758f094fd3c641479a240070d1d1b2543911f4a70eb8fd2c52fa8b5cdad48ed",
package/howto.md ADDED
@@ -0,0 +1,28 @@
1
+ How to release:
2
+ ---------------
3
+ - upload zip release to s3 (https://owcachedcontent.s3.amazonaws.com/ow-electron/releases/download/v19.0.8/ow-electron-v19.0.8-win32-x64.zip)
4
+ - calculate sha256 of zip file (powershell: Get-FileHash [zip file])
5
+ - place it in checksums.json (also make sure the name is correct - e.g. ow-electron-v19.0.8-win32-x64.zip": "1b4c0971307e25b9aeacd0574a23276c461a9b8e16f6caf8eb8aa641b96d09ed)
6
+ - update package.json - version
7
+ - publish: npm publish --access public
8
+
9
+ --------------
10
+ - release.js
11
+ - publish-to-npm.js
12
+ - create a temp folder
13
+ - copies all files from npm folder
14
+ - copies README and license from project root
15
+ - edits package.json from the root package json (name, version etc...)
16
+ - From the Electron git repo - downloads electron.d.ts to temp
17
+ - from the electron git repo - download SHASUMS256.txt and convert to checksums.json
18
+ - get release tag name
19
+ - npm pack the folder (create a tarball from the package)
20
+ - install and test it worked (looking at the folder under npm_modules) [npm i tarball --force --silent]
21
+ - check if already published to npm (via npm view) otherwise npm publish
22
+ - npm dist-tag
23
+ - npm/install.js - runs when calling npm i @overwolf/ow-electron
24
+ - check if npm_modules/@overwolf/ow-electron/dist/version to check already installed
25
+ - downloadArtifact (if doesn't exist)
26
+ - filename: artifactName[ow-electron]-[version]-[platform]-[arch].zip
27
+ - calculate url to file: details.mirrorOptions/[version]
28
+ - downloads to local folder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@overwolf/ow-electron",
3
- "version": "19.0.8",
3
+ "version": "19.0.9",
4
4
  "repository": "https://github.com/electron/electron",
5
5
  "description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
6
6
  "license": "MIT",