w-data-collector 1.0.18 → 1.0.19
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/.github/workflows/ci-test.yml +24 -0
- package/dist/w-data-collector.umd.js +1 -1
- package/docs/genIndex.mjs.html +1 -1
- package/docs/genTestdata.mjs.html +1 -1
- package/docs/global.html +1 -1
- package/docs/index.html +1 -1
- package/package.json +3 -3
- package/test/schema/index.mjs +4 -4
- package/test/schema/index.mjs.txt +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: Node.js CI
|
|
2
|
+
|
|
3
|
+
on: [push]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
|
|
10
|
+
strategy:
|
|
11
|
+
matrix:
|
|
12
|
+
node-version: [18.x]
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v2
|
|
16
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
17
|
+
uses: actions/setup-node@v1
|
|
18
|
+
with:
|
|
19
|
+
node-version: ${{ matrix.node-version }}
|
|
20
|
+
- run: npm cache clean -f
|
|
21
|
+
- run: npm install
|
|
22
|
+
- run: npm test
|
|
23
|
+
env:
|
|
24
|
+
CI: true
|
package/docs/genIndex.mjs.html
CHANGED
|
@@ -186,7 +186,7 @@ export default genIndex
|
|
|
186
186
|
<br class="clear">
|
|
187
187
|
|
|
188
188
|
<footer>
|
|
189
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
189
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Mar 30 2023 15:29:10 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
190
190
|
</footer>
|
|
191
191
|
|
|
192
192
|
<script>prettyPrint();</script>
|
|
@@ -152,7 +152,7 @@ export default genTestdata
|
|
|
152
152
|
<br class="clear">
|
|
153
153
|
|
|
154
154
|
<footer>
|
|
155
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
155
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Mar 30 2023 15:29:10 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
156
156
|
</footer>
|
|
157
157
|
|
|
158
158
|
<script>prettyPrint();</script>
|
package/docs/global.html
CHANGED
|
@@ -892,7 +892,7 @@
|
|
|
892
892
|
<br class="clear">
|
|
893
893
|
|
|
894
894
|
<footer>
|
|
895
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
895
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Mar 30 2023 15:29:10 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
896
896
|
</footer>
|
|
897
897
|
|
|
898
898
|
<script>prettyPrint();</script>
|
package/docs/index.html
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
<br class="clear">
|
|
72
72
|
|
|
73
73
|
<footer>
|
|
74
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on
|
|
74
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Thu Mar 30 2023 15:29:10 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
|
|
75
75
|
</footer>
|
|
76
76
|
|
|
77
77
|
<script>prettyPrint();</script>
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "w-data-collector",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"main": "dist/w-data-collector.umd.js",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"lodash": "^4.17.21",
|
|
7
|
-
"wsemi": "^1.7.
|
|
7
|
+
"wsemi": "^1.7.2"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"w-package-tools": "^1.0.
|
|
10
|
+
"w-package-tools": "^1.0.69"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"test": "mocha --parallel --timeout 60000 --experimental-modules --es-module-specifier-resolution=node",
|
package/test/schema/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import holeLabTabs from './tables/holeLabTabs.mjs'
|
|
2
|
+
import holeLabTabsItems from './tables/holeLabTabsItems.mjs'
|
|
3
|
+
import users from './tables/users.mjs'
|
|
4
4
|
import build from './src/build.mjs'
|
|
5
5
|
|
|
6
6
|
|
|
@@ -13,7 +13,7 @@ let cs = {
|
|
|
13
13
|
//ds
|
|
14
14
|
let ds = {}
|
|
15
15
|
for (let k in cs) {
|
|
16
|
-
ds[k] = build(cs[k])
|
|
16
|
+
ds[k] = build(cs[k], { useCreateStorage: false })
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
|