File tree Expand file tree Collapse file tree 4 files changed +15
-23
lines changed Expand file tree Collapse file tree 4 files changed +15
-23
lines changed Original file line number Diff line number Diff line change @@ -15,23 +15,16 @@ jobs:
15
15
16
16
runs-on : ubuntu-latest
17
17
18
- strategy :
19
- matrix :
20
- node-version : [18.x]
21
-
22
18
steps :
23
- - uses : actions/checkout@v2
24
- - name : Use Node.js ${{ matrix.node-version }}
25
- uses : actions/setup-node@v2
19
+ - uses : actions/checkout@v4
20
+ - uses : actions/setup-node@v4
26
21
with :
27
- node-version : ${{ matrix.node-version }}
28
- - name : Install depot_tools
29
- run : |
22
+ node-version : ' 18.x'
23
+ - run : |
30
24
sudo apt-get install git curl xz-utils python3-pkg-resources python3-virtualenv python3-oauth2client
31
25
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
32
26
echo "PATH=$(pwd)/depot_tools:$PATH" >> $GITHUB_ENV
33
- - name : Build chii
34
- run : |
27
+ - run : |
35
28
npm i -g @liriliri/lsla
36
29
npm i
37
30
npm run init:front_end
Original file line number Diff line number Diff line change @@ -11,25 +11,20 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
13
13
steps :
14
- - name : Checkout
15
- uses : actions/checkout@v2
16
- - name : Setup Node
17
- uses : actions/setup-node@v2
14
+ - uses : actions/checkout@v4
15
+ - uses : actions/setup-node@v4
18
16
with :
19
17
node-version : ' 18.x'
20
18
registry-url : ' https://registry.npmjs.org'
21
- - name : Install depot_tools
22
- run : |
19
+ - run : |
23
20
sudo apt-get install git curl xz-utils python3-pkg-resources python3-virtualenv python3-oauth2client
24
21
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
25
22
echo "PATH=$(pwd)/depot_tools:$PATH" >> $GITHUB_ENV
26
- - name : Build chii
27
- run : |
23
+ - run : |
28
24
npm i -g @liriliri/lsla
29
25
npm i
30
26
npm run init:front_end
31
27
npm run build
32
- - name : Publish package on NPM
33
- run : npm publish
28
+ - run : npm publish
34
29
env :
35
30
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change
1
+ ## 1.15.3 (27 Oct 2024)
2
+
3
+ * fix: embedded mode not resizable on mobile [ #81 ] ( https://github.com/liriliri/chii/issues/81 )
4
+
1
5
## 1.15.2 (17 Oct 2024)
2
6
3
7
* fix: ws dead loop
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " chii" ,
3
- "version" : " 1.15.2 " ,
3
+ "version" : " 1.15.3 " ,
4
4
"description" : " Chrome devtools framework" ,
5
5
"main" : " ./server/index.js" ,
6
6
"bin" : {
You can’t perform that action at this time.
0 commit comments