@todesktop/shared 7.160.0 → 7.161.0

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.
@@ -0,0 +1,26 @@
1
+ # Node.js
2
+ # Build a general Node.js project with npm.
3
+ # Add steps that analyze code, save build artifacts, deploy, and more:
4
+ # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
5
+
6
+ trigger:
7
+ - master
8
+
9
+ pool:
10
+ vmImage: ubuntu-latest
11
+
12
+ steps:
13
+ - checkout: self
14
+ persistCredentials: true
15
+ - script: |
16
+ echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
17
+ git config --global user.email "git@todesktop.com"
18
+ git config --global user.name "ToDesktop"
19
+ git checkout -b master
20
+ git push --set-upstream origin master
21
+ npm install
22
+ npm run build
23
+ npm run bump
24
+ displayName: 'npm install, build and publish new version'
25
+ env:
26
+ NPM_TOKEN: $(NPM_TOKEN)
@@ -98,7 +98,7 @@ export interface Build {
98
98
  isCanceled?: boolean;
99
99
  linux?: SmokeTestProgress;
100
100
  mac?: SmokeTestProgress;
101
- win?: SmokeTestProgress;
101
+ windows?: SmokeTestProgress;
102
102
  };
103
103
  sourcePackageManager?: PackageManager;
104
104
  standardUniversalDownloadUrl?: URL;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@todesktop/shared",
3
- "version": "7.160.0",
3
+ "version": "7.161.0",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
package/src/desktopify.ts CHANGED
@@ -138,7 +138,7 @@ export interface Build {
138
138
  isCanceled?: boolean;
139
139
  linux?: SmokeTestProgress;
140
140
  mac?: SmokeTestProgress;
141
- win?: SmokeTestProgress;
141
+ windows?: SmokeTestProgress;
142
142
  };
143
143
  // sourceArchiveUrl: URL;
144
144
  sourcePackageManager?: PackageManager;