-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✅transpiled code to support old browsers
- Loading branch information
1 parent
3e365ec
commit f45aecb
Showing
5 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,10 @@ jobs: | |
node-version: 16 | ||
|
||
- run: sudo npm install --save-dev webpack webpack-cli | ||
- run: npm install --save-dev @babel/core @babel/cli @babel/preset-env | ||
- run: cd www && mkdir dist && cd .. | ||
- run: npm run build | ||
- run: npm run babelit | ||
- run: ls | ||
- run: sudo npm install -g [email protected] | ||
- run: sudo cordova platform add android | ||
|
@@ -68,7 +70,7 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.TK }} | ||
with: | ||
tag_name: ${{ github.run_number }} | ||
release_name: ${{ github.event.repository.name }} v5.0.6 #release | ||
release_name: ${{ github.event.repository.name }} v5.0.7 #release | ||
|
||
- name: upload Release Apk | ||
id: upload_release_assets | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"targets": { | ||
"edge": "17", | ||
"firefox": "60", | ||
"chrome": "67", | ||
"safari": "11.1" | ||
}, | ||
"useBuiltIns": "usage", | ||
"corejs": "3.6.5" | ||
} | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
✅Now ctrl + S 5o save changes to a file you are currently editing | ||
✅transpiled code to support old browsers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters