Skip to content

Commit af71526

Browse files
committed
v0.73.2: update dependecies
1 parent 00e5e5c commit af71526

File tree

6 files changed

+775
-697
lines changed

6 files changed

+775
-697
lines changed

.github/workflows/npm-build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node-version: [14.x]
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: build emulators-ui
18+
uses: actions/setup-node@v3
19+
with:
20+
node-version: ${{ matrix.node-version }}
21+
- run: npm install -g yarn
22+
- run: yarn
23+
- run: yarn run eslint . --ext ts,tsx --max-warnings 0
24+
- run: yarn run gulp
25+
- name: upload
26+
uses: actions/[email protected]
27+
with:
28+
name: 'dist'
29+
path: 'dist'

.github/workflows/npm-gulp.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/npm-publish.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Publish release
2+
3+
on:
4+
release:
5+
types: [created]
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
node-version: [14.x]
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: build & publish emulators-ui
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
cache: 'npm'
21+
registry-url: https://registry.npmjs.org/
22+
env:
23+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
24+
- run: npm install -g yarn
25+
- run: yarn
26+
- run: yarn run eslint . --ext ts,tsx --max-warnings 0
27+
- run: yarn run gulp
28+
- run: npm publish
29+
- name: upload
30+
uses: actions/[email protected]
31+
with:
32+
name: 'dist'
33+
path: 'dist'

package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "emulators-ui",
3-
"version": "0.73.1",
3+
"version": "0.73.2",
44
"description": "Emulators UI",
55
"main": "dist/emulators-ui.js",
66
"types": "dist/types/emulators-ui.d.ts",
@@ -38,7 +38,6 @@
3838
"@types/gulp-size": "^2.1.1",
3939
"@types/gulp-sourcemaps": "0.0.32",
4040
"@types/gulp-terser": "^1.2.1",
41-
"@types/gulp-uglify": "^3.0.6",
4241
"@types/md5-file": "^4.0.1",
4342
"@types/node": "^10.17.21",
4443
"@types/vinyl-buffer": "^1.0.0",
@@ -49,8 +48,8 @@
4948
"browserify": "^17.0.0",
5049
"core-js": "^3.19.1",
5150
"del": "^5.1.0",
52-
"element-resize-detector": "^1.2.1",
53-
"emulators": "^0.73.1",
51+
"element-resize-detector": "^1.2.4",
52+
"emulators": "^0.73.4",
5453
"eslint": "^7.30.0",
5554
"eslint-config-google": "^0.14.0",
5655
"git-repo-info": "^2.1.1",
@@ -59,14 +58,13 @@
5958
"gulp-size": "^4.0.1",
6059
"gulp-sourcemaps": "^3.0.0",
6160
"gulp-terser": "^2.1.0",
62-
"highlight.js": "^8.9.1",
6361
"md5.js": "^1.3.5",
6462
"nipplejs": "^0.9.0",
6563
"notyf": "^3.10.0",
6664
"simple-keyboard": "^2.32.48",
67-
"ts-node": "^10.4.0",
65+
"ts-node": "^10.7.0",
6866
"tsify": "^5.0.4",
69-
"typescript": "^4.5.2",
67+
"typescript": "^4.6.3",
7068
"vinyl-buffer": "^1.0.1",
7169
"vinyl-source-stream": "^2.0.0"
7270
}

src/build.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// gulpfile.ts/wasm.ts --> generateBuildInfo
55

66
export const Build = {
7-
short: "0.73.0",
8-
version: "0.73.0 (520ced180cb105d8c82fcbe04e3fc430)",
9-
buildSeed: 1646900945967,
7+
short: "0.73.2",
8+
version: "0.73.2 (2e3e846edbcb9a05fcaec03a3a2fcd32)",
9+
buildSeed: 1650002532619,
1010
};

0 commit comments

Comments
 (0)