You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by wa...@apache.org on 2022/04/19 12:42:46 UTC

[echarts-website] branch pwa updated (c58a6502 -> fbecf5d8)

This is an automated email from the ASF dual-hosted git repository.

wangzx pushed a change to branch pwa
in repository https://gitbox.apache.org/repos/asf/echarts-website.git


    from c58a6502 feat: support PWA
     new 2a0ff8b4 chore: remove unused dependencies
     new fbecf5d8 chore: add build PWA step to `deploy` workflow

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/deploy.yml | 6 ++++--
 package-lock.json            | 4 +---
 package.json                 | 4 +---
 3 files changed, 6 insertions(+), 8 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[echarts-website] 01/02: chore: remove unused dependencies

Posted by wa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wangzx pushed a commit to branch pwa
in repository https://gitbox.apache.org/repos/asf/echarts-website.git

commit 2a0ff8b459108bba01994b8ee2b0b1ce80afb701
Author: plainheart <yh...@all-my-life.cn>
AuthorDate: Tue Apr 19 20:37:49 2022 +0800

    chore: remove unused dependencies
---
 package-lock.json | 4 +---
 package.json      | 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/package-lock.json b/package-lock.json
index 7df9a874..485ea193 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -13,9 +13,7 @@
         "minimist": "^1.2.5",
         "node-fetch": "^2.6.1",
         "vite": "^2.9.5",
-        "vite-plugin-pwa": "^0.11.13",
-        "workbox-build": "^6.5.3",
-        "workbox-window": "^6.5.3"
+        "vite-plugin-pwa": "^0.11.13"
       }
     },
     "node_modules/@actions/core": {
diff --git a/package.json b/package.json
index bb32a3b5..b625eaae 100644
--- a/package.json
+++ b/package.json
@@ -10,9 +10,7 @@
     "minimist": "^1.2.5",
     "node-fetch": "^2.6.1",
     "vite": "^2.9.5",
-    "vite-plugin-pwa": "^0.11.13",
-    "workbox-build": "^6.5.3",
-    "workbox-window": "^6.5.3"
+    "vite-plugin-pwa": "^0.11.13"
   },
   "repository": {
     "type": "git",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[echarts-website] 02/02: chore: add build PWA step to `deploy` workflow

Posted by wa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wangzx pushed a commit to branch pwa
in repository https://gitbox.apache.org/repos/asf/echarts-website.git

commit fbecf5d820b002259c4c30102835f09ea9d890eb
Author: plainheart <yh...@all-my-life.cn>
AuthorDate: Tue Apr 19 20:41:52 2022 +0800

    chore: add build PWA step to `deploy` workflow
---
 .github/workflows/deploy.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 6f5a5c82..963f007c 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -8,7 +8,7 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - name: Checkout 🛎️
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
 
       - name: Prepare workspace
         run: mkdir tmp-workspace
@@ -48,7 +48,6 @@ jobs:
           cd echarts-handbook
           npm install
 
-
       - name: Build 🔧
         working-directory: tmp-workspace
         run: |
@@ -59,6 +58,9 @@ jobs:
       - name: Install Dep
         run: npm install
 
+      - name: Build PWA
+        run: npm run build:pwa
+
       - name: Deploy 🚀
         uses: ./node_modules/@jamesives/github-pages-deploy-action
         with:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org