w-email 1.0.32 → 1.0.33

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.
@@ -9,7 +9,7 @@ jobs:
9
9
 
10
10
  strategy:
11
11
  matrix:
12
- node-version: [18.x]
12
+ node-version: [20.x]
13
13
 
14
14
  steps:
15
15
  - uses: actions/checkout@v2
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * w-email v1.0.32
2
+ * w-email v1.0.33
3
3
  * (c) 2018-2021 yuda-lyu(semisphere)
4
4
  * Released under the MIT License.
5
5
  */
@@ -46,7 +46,7 @@
46
46
  <section>
47
47
  <article>
48
48
  <pre class="prettyprint source linenums"><code>import nodemailer from 'nodemailer'
49
- import get from 'lodash-es/get'
49
+ import get from 'lodash-es/get.js'
50
50
  import genPm from 'wsemi/src/genPm.mjs'
51
51
  import isstr from 'wsemi/src/isstr.mjs'
52
52
  import isobj from 'wsemi/src/isobj.mjs'
@@ -214,7 +214,7 @@ export default WEmail
214
214
  <br class="clear">
215
215
 
216
216
  <footer>
217
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue Mar 19 2024 21:44:25 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
217
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sat Mar 23 2024 20:09:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
218
218
  </footer>
219
219
 
220
220
  <script>prettyPrint();</script>
package/docs/global.html CHANGED
@@ -802,7 +802,7 @@
802
802
  <br class="clear">
803
803
 
804
804
  <footer>
805
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Tue Mar 19 2024 21:44:25 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
805
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sat Mar 23 2024 20:09:01 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
806
806
  </footer>
807
807
 
808
808
  <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 Tue Mar 19 2024 21:44:25 GMT+0800 (台北標準時間) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
74
+ Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 4.0.2</a> on Sat Mar 23 2024 20:09:01 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,14 +1,14 @@
1
1
  {
2
2
  "name": "w-email",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
4
4
  "main": "dist/w-email.umd.js",
5
5
  "dependencies": {
6
- "nodemailer": "^6.9.12",
6
+ "nodemailer": "^6.9.13",
7
7
  "lodash-es": "^4.17.21",
8
- "wsemi": "^1.7.47"
8
+ "wsemi": "^1.7.49"
9
9
  },
10
10
  "devDependencies": {
11
- "w-package-tools": "^1.0.73"
11
+ "w-package-tools": "^1.0.75"
12
12
  },
13
13
  "scripts": {
14
14
  "test": "mocha --parallel --timeout 60000 --experimental-modules --es-module-specifier-resolution=node",
package/script.txt ADDED
@@ -0,0 +1,19 @@
1
+ #node --experimental-modules --es-module-specifier-resolution=node toolg/addVersion.mjs
2
+ node --experimental-modules --es-module-specifier-resolution=node toolg/modifyReadme.mjs
3
+
4
+ node --experimental-modules --es-module-specifier-resolution=node toolg/cleanFolder.mjs
5
+ ./node_modules/.bin/jsdoc -c .jsdoc
6
+
7
+ node --experimental-modules --es-module-specifier-resolution=node toolg/gDistRollup.mjs
8
+
9
+ git add . -A
10
+ git commit -m 'modify: '
11
+ git push origin master:master
12
+
13
+ npm run deploy
14
+
15
+ #npm test
16
+ #node --experimental-modules --es-module-specifier-resolution=node scla.mjs
17
+
18
+ #npm publish
19
+
package/src/WEmail.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import nodemailer from 'nodemailer'
2
- import get from 'lodash-es/get'
2
+ import get from 'lodash-es/get.js'
3
3
  import genPm from 'wsemi/src/genPm.mjs'
4
4
  import isstr from 'wsemi/src/isstr.mjs'
5
5
  import isobj from 'wsemi/src/isobj.mjs'