w-audioplayer-vue 2.0.2 → 2.0.6
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.
- package/.eslintrc.js +1 -0
- package/.github/workflows/ci-test.yml +2 -1
- package/README.md +1 -2
- package/SECURITY.md +5 -0
- package/dist/w-audioplayer-vue.umd.js +4 -4
- package/dist/w-audioplayer-vue.umd.js.map +1 -1
- package/docs/examples/app.html +151 -6
- package/docs/examples/app.umd.js +4 -4
- package/docs/examples/app.umd.js.map +1 -1
- package/docs/examples/{AppBasic.html → ex-AppBasic.html} +19 -21
- package/docs/examples/{AppCustomSize.html → ex-AppCustomSize.html} +19 -21
- package/docs/examples/{AppDarkCyan.html → ex-AppDarkCyan.html} +19 -21
- package/docs/examples/{AppFullSize.html → ex-AppFullSize.html} +19 -21
- package/docs/examples/{AppLanguage.html → ex-AppLanguage.html} +19 -21
- package/docs/examples/{AppLightPink.html → ex-AppLightPink.html} +19 -21
- package/docs/index.html +1 -1
- package/docs/module-WAudioplayerVue.html +1 -1
- package/package.json +9 -10
- package/public/index.html +3 -18
- package/src/App.vue +19 -2
- package/src/components/WAudioplayerVue.vue +3 -4
- package/test/{all.test.js → all.test.mjs} +0 -0
- package/test-action/ex-AppBasic.action.json +1 -0
- package/test-action/ex-AppCustomSize.action.json +1 -0
- package/test-action/ex-AppDarkCyan.action.json +1 -0
- package/test-action/ex-AppFullSize.action.json +1 -0
- package/test-action/ex-AppLanguage.action.json +1 -0
- package/test-action/ex-AppLightPink.action.json +1 -0
- package/test-html/{AppBasic.html → ex-AppBasic.html} +18 -20
- package/test-html/{AppCustomSize.html → ex-AppCustomSize.html} +18 -20
- package/test-html/{AppDarkCyan.html → ex-AppDarkCyan.html} +18 -20
- package/test-html/{AppFullSize.html → ex-AppFullSize.html} +18 -20
- package/test-html/{AppLanguage.html → ex-AppLanguage.html} +18 -20
- package/test-html/{AppLightPink.html → ex-AppLightPink.html} +18 -20
- package/toolg/gDistApp.mjs +155 -1
- package/toolg/gExtractHtml.mjs +185 -241
package/.eslintrc.js
CHANGED
|
@@ -9,7 +9,7 @@ jobs:
|
|
|
9
9
|
|
|
10
10
|
strategy:
|
|
11
11
|
matrix:
|
|
12
|
-
node-version: [
|
|
12
|
+
node-version: [16.x]
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
15
|
- uses: actions/checkout@v2
|
|
@@ -17,6 +17,7 @@ jobs:
|
|
|
17
17
|
uses: actions/setup-node@v1
|
|
18
18
|
with:
|
|
19
19
|
node-version: ${{ matrix.node-version }}
|
|
20
|
+
- run: npm cache clean -f
|
|
20
21
|
- run: npm install
|
|
21
22
|
- run: npm test
|
|
22
23
|
env:
|
package/README.md
CHANGED
|
@@ -4,7 +4,6 @@ An audio player by howler.
|
|
|
4
4
|

|
|
5
5
|
[](https://github.com/vuejs/vue)
|
|
6
6
|
[](https://npmjs.org/package/w-audioplayer-vue)
|
|
7
|
-
[](https://travis-ci.org/yuda-lyu/w-audioplayer-vue) [](https://npmjs.org/package/w-audioplayer-vue)
|
|
8
7
|
[](https://github.com/yuda-lyu/w-audioplayer-vue)
|
|
9
8
|
[](https://npmjs.org/package/w-audioplayer-vue)
|
|
10
9
|
[](https://www.jsdelivr.com/package/npm/w-audioplayer-vue)
|
|
@@ -43,7 +42,7 @@ Vue.component('w-audioplayer-vue', WAudioplayerVue)
|
|
|
43
42
|
```
|
|
44
43
|
[Necessary] Add script for w-audioplayer-vue.
|
|
45
44
|
```alias
|
|
46
|
-
<script src="https://cdn.jsdelivr.net/npm/w-audioplayer-vue@2.0.
|
|
45
|
+
<script src="https://cdn.jsdelivr.net/npm/w-audioplayer-vue@2.0.6/dist/w-audioplayer-vue.umd.js"></script>
|
|
47
46
|
```
|
|
48
47
|
Directly use:
|
|
49
48
|
```alias
|