@jtff/miztemplate-lib 3.0.0-rc1 → 3.0.0-rc11
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/index.js +2 -2
- package/lib/jtff-lib-ci.js +3 -1
- package/lib/mizlib.js +334 -285
- package/package.json +1 -1
- package/scripts/build.js +1 -2
- package/scripts/inject-scripts.js +215 -208
- package/scripts/template-update.js +1 -1
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const MizTemplateCI = require("./lib/jtff-lib-ci.js");
|
|
2
|
-
const
|
|
2
|
+
const Mizlib = require("./lib/mizlib.js");
|
|
3
3
|
const build = require("./scripts/build.js");
|
|
4
4
|
const clean = require("./scripts/clean.js");
|
|
5
5
|
const ftpupload = require("./scripts/ftpupload.js");
|
|
@@ -13,6 +13,7 @@ const templateUpdate = require("./scripts/template-update.js");
|
|
|
13
13
|
|
|
14
14
|
module.exports = {
|
|
15
15
|
MizTemplateCI: MizTemplateCI,
|
|
16
|
+
Mizlib: Mizlib,
|
|
16
17
|
build:build,
|
|
17
18
|
clean:clean,
|
|
18
19
|
ftpupload:ftpupload,
|
|
@@ -24,5 +25,4 @@ module.exports = {
|
|
|
24
25
|
nextversionPrepare:nextversionPrepare,
|
|
25
26
|
release:release,
|
|
26
27
|
templateUpdate:templateUpdate,
|
|
27
|
-
mizlib: mizlib,
|
|
28
28
|
};
|
package/lib/jtff-lib-ci.js
CHANGED
|
@@ -4,10 +4,12 @@ const fs = require("fs");
|
|
|
4
4
|
const path = require("path");
|
|
5
5
|
const { google } = require("googleapis");
|
|
6
6
|
const ftpClient = require('ftp');
|
|
7
|
+
const Mizlib = require("./mizlib");
|
|
7
8
|
|
|
8
9
|
class MizTemplateCI{
|
|
9
10
|
constructor(config) {
|
|
10
|
-
this.config = config
|
|
11
|
+
this.config = config;
|
|
12
|
+
this.mizlib = new Mizlib();
|
|
11
13
|
}
|
|
12
14
|
|
|
13
15
|
getVersion() {
|