cob-cli 2.30.0 → 2.32.0
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/lib/commands/customize.js +4 -4
- package/lib/commands/init.js +1 -1
- package/lib/commands/test.js +1 -2
- package/lib/task_lists/common_enviromentHandler.js +1 -1
- package/lib/task_lists/common_helpers.js +1 -1
- package/lib/task_lists/common_releaseManager.js +2 -2
- package/lib/task_lists/deploy_execute.js +1 -1
- package/lib/task_lists/deploy_validate.js +1 -1
- package/lib/task_lists/init_existingProject.js +1 -1
- package/lib/task_lists/init_newProject.js +1 -1
- package/lib/task_lists/test_customUIsContinuosReload.js +4 -3
- package/lib/task_lists/test_otherFilesContiousReload.js +2 -2
- package/lib/task_lists/test_validate.js +1 -1
- package/lib/webpack/webpack.config.js +33 -26
- package/package.json +7 -6
|
@@ -4,7 +4,7 @@ const path = require("path");
|
|
|
4
4
|
const { checkVersion } = require("./upgradeRepo");
|
|
5
5
|
const { checkWorkingCopyCleanliness } = require("../task_lists/common_helpers");
|
|
6
6
|
const axios = require("axios");
|
|
7
|
-
const git = require("simple-git
|
|
7
|
+
const git = require("simple-git");
|
|
8
8
|
const ncp = require("ncp");
|
|
9
9
|
const { Transform } = require("stream");
|
|
10
10
|
const fg = require("fast-glob");
|
|
@@ -132,10 +132,10 @@ async function downloadCustomizationFiles(customizationRepo) {
|
|
|
132
132
|
|
|
133
133
|
process.chdir(cacheDir);
|
|
134
134
|
if (!fs.existsSync(path.resolve(cacheDir,customizationRepo.name))) {
|
|
135
|
-
console.log(" git
|
|
136
|
-
await git().clone(customizationRepo.
|
|
135
|
+
console.log(" git clone " + customizationRepo.clone_url);
|
|
136
|
+
await git().clone(customizationRepo.clone_url);
|
|
137
137
|
} else {
|
|
138
|
-
console.log(" git pull " + customizationRepo.
|
|
138
|
+
console.log(" git pull " + customizationRepo.clone_url);
|
|
139
139
|
process.chdir(customizationRepo.name);
|
|
140
140
|
try {
|
|
141
141
|
await git().pull();
|
package/lib/commands/init.js
CHANGED
|
@@ -4,7 +4,7 @@ const { newProjectTasks } = require("../task_lists/init_newProject");
|
|
|
4
4
|
const { existingProjectTasks } = require("../task_lists/init_existingProject");
|
|
5
5
|
const fs = require('fs-extra');
|
|
6
6
|
const axios = require('axios');
|
|
7
|
-
const git = require('simple-git
|
|
7
|
+
const git = require('simple-git');
|
|
8
8
|
|
|
9
9
|
/* ******************************** MAIN LOGIC **************************************** */
|
|
10
10
|
async function init(servername,args) {
|
package/lib/commands/test.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
require('colors');
|
|
2
|
-
const opn = require('
|
|
2
|
+
const opn = require('open');
|
|
3
3
|
const { validateTestingConditions } = require("../task_lists/test_validate");
|
|
4
4
|
const { customUIsContinuosReload } = require("../task_lists/test_customUIsContinuosReload");
|
|
5
5
|
const { otherFilesContiousReload } = require("../task_lists/test_otherFilesContiousReload");
|
|
@@ -24,7 +24,6 @@ async function test (args) {
|
|
|
24
24
|
}
|
|
25
25
|
customUIsContinuosReload(cmdEnv, args.dashboard)
|
|
26
26
|
|
|
27
|
-
console.log( "\n" + (" NOTE: Press " + "O".bold.red + " to open default browser, " + "CTRL+C".bold.red + " or " + "Q".bold.red + " to stop the tests... ").yellow.bold + "\n\n" )
|
|
28
27
|
let key;
|
|
29
28
|
do {
|
|
30
29
|
key = await getKeypress()
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require('colors');
|
|
2
2
|
const execa = require('execa');
|
|
3
3
|
const fg = require('fast-glob');
|
|
4
|
-
const git = require('simple-git
|
|
4
|
+
const git = require('simple-git');
|
|
5
5
|
const fs = require('fs-extra');
|
|
6
6
|
const { getCurrentBranch } = require("./common_releaseManager");
|
|
7
7
|
const { SERVER_COB_CLI_DIRECTORY } = require("./common_helpers")
|
|
@@ -2,7 +2,7 @@ const SERVER_COB_CLI_DIRECTORY = "/opt/cob-cli/";
|
|
|
2
2
|
|
|
3
3
|
/* **************************************************************************************** */
|
|
4
4
|
async function checkWorkingCopyCleanliness(testNotDetached=true) {
|
|
5
|
-
const git = require('simple-git
|
|
5
|
+
const git = require('simple-git');
|
|
6
6
|
//Check we're not detached
|
|
7
7
|
if(testNotDetached) await git().revparse(["--abbrev-ref", "HEAD"]).then( currentBranch => { if(!currentBranch) throw new Error("Aborded:".red + " git head is dettached")} )
|
|
8
8
|
await git().fetch()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const execa = require('execa');
|
|
2
2
|
const fs = require('fs-extra');
|
|
3
|
-
const git = require('simple-git
|
|
3
|
+
const git = require('simple-git');
|
|
4
4
|
|
|
5
5
|
const SERVER_CHANGELOG = "/opt/cob-cli/DEPLOYLOG.md";
|
|
6
6
|
const LAST_SHA_FILE = "lastDeploySha"
|
|
@@ -33,7 +33,7 @@ async function registerRelease(cmdEnv) {
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
// Maintain server deploy file log
|
|
36
|
-
const user = require(
|
|
36
|
+
const user = require("os").userInfo().username;
|
|
37
37
|
const date = new Date();
|
|
38
38
|
const dateStr = date.toISOString().slice(0,10).replace(/-/g,".")
|
|
39
39
|
const dateTimeStr = date.toISOString().slice(0,16).replace(/T/," ")
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const Listr = require('listr');
|
|
2
2
|
const UpdaterRenderer = require('listr-update-renderer');
|
|
3
3
|
const verboseRenderer = require('listr-verbose-renderer');
|
|
4
|
-
const git = require('simple-git
|
|
4
|
+
const git = require('simple-git');
|
|
5
5
|
const { registerRelease } = require("./common_releaseManager");
|
|
6
6
|
const { copyFiles } = require("./common_syncFiles");
|
|
7
7
|
|
|
@@ -2,7 +2,7 @@ require('colors');
|
|
|
2
2
|
const Listr = require('listr');
|
|
3
3
|
const UpdaterRenderer = require('listr-update-renderer');
|
|
4
4
|
const verboseRenderer = require('listr-verbose-renderer');
|
|
5
|
-
const git = require('simple-git
|
|
5
|
+
const git = require('simple-git');
|
|
6
6
|
const { checkWorkingCopyCleanliness, checkConnectivity } = require("./common_helpers");
|
|
7
7
|
const { getCurrentBranch, getLastDeployedSha } = require("./common_releaseManager");
|
|
8
8
|
const { testEquality } = require("./common_syncFiles");
|
|
@@ -3,7 +3,7 @@ const Listr = require('listr');
|
|
|
3
3
|
const fs = require('fs-extra');
|
|
4
4
|
const path = require('path')
|
|
5
5
|
const execa = require('execa');
|
|
6
|
-
const git = require('simple-git
|
|
6
|
+
const git = require('simple-git');
|
|
7
7
|
const UpdaterRenderer = require('listr-update-renderer');
|
|
8
8
|
const verboseRenderer = require('listr-verbose-renderer');
|
|
9
9
|
const { checkConnectivity } = require("./common_helpers");
|
|
@@ -20,7 +20,7 @@ async function customUIsContinuosReload(cmdEnv, dashboard) {
|
|
|
20
20
|
if(dashboardPathIsDirectory) {
|
|
21
21
|
// If we have a dashboard to serve run it from local dashboard directory on 8081 with vue-cli-service
|
|
22
22
|
// it will use its vue.config.js
|
|
23
|
-
console.log("\n
|
|
23
|
+
console.log("\n PLEASE WAIT".red + ": checking dependencies...")
|
|
24
24
|
await execa("npm",["install"],{cwd: dashboardPath} )
|
|
25
25
|
|
|
26
26
|
commands.push( {
|
|
@@ -33,14 +33,15 @@ async function customUIsContinuosReload(cmdEnv, dashboard) {
|
|
|
33
33
|
})
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
console.log( "\n" + (" NOTE: Press " + "O".bold.red + " to open default browser, " + "CTRL+C".bold.red + " or " + "Q".bold.red + " to stop the tests... ").yellow.bold + "\n\n" )
|
|
37
|
+
|
|
36
38
|
commands.push({
|
|
37
39
|
// run wepback from cob-cli directory with webpack.config.js also from cob-cli directory
|
|
38
40
|
command: [
|
|
39
41
|
path.resolve(__dirname, '../../node_modules/.bin/webpack-dev-server'),
|
|
40
42
|
"--config",
|
|
41
43
|
path.resolve(__dirname, "../webpack/webpack.config.js"),
|
|
42
|
-
"--
|
|
43
|
-
"--env.DASHBOARD=" + dashboard
|
|
44
|
+
"--mode=development"
|
|
44
45
|
].join(" "),
|
|
45
46
|
name: 'customUIs server',
|
|
46
47
|
prefixColor: "blue"
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
const fs = require('fs-extra');
|
|
2
2
|
const execa = require('execa');
|
|
3
|
-
const git = require('simple-git
|
|
4
|
-
const user = require('whoami');
|
|
3
|
+
const git = require('simple-git');
|
|
5
4
|
const { SERVER_COB_CLI_DIRECTORY } = require("./common_helpers");
|
|
6
5
|
const { confirmExecutionOfChanges, resolveCobPath } = require("./common_syncFiles");
|
|
7
6
|
const { syncFile } = require("./test_syncFile");
|
|
@@ -124,6 +123,7 @@ async function addFileToCurrentTest(server, changedFile, changedFiles, changeTyp
|
|
|
124
123
|
}
|
|
125
124
|
|
|
126
125
|
if(!changedFiles.has(changedFile)) {
|
|
126
|
+
const user = require("os").userInfo().username;
|
|
127
127
|
execa('ssh', [server, "echo '" + changedFile + " by " + user + "' >> " + SERVER_IN_PROGRESS_TEST_FILE]);
|
|
128
128
|
changedFiles.add(changedFile);
|
|
129
129
|
}
|
|
@@ -4,7 +4,7 @@ const execa = require('execa');
|
|
|
4
4
|
const fs = require('fs-extra');
|
|
5
5
|
const UpdaterRenderer = require('listr-update-renderer');
|
|
6
6
|
const verboseRenderer = require('listr-verbose-renderer');
|
|
7
|
-
const git = require('simple-git
|
|
7
|
+
const git = require('simple-git');
|
|
8
8
|
const { checkConnectivity } = require("./common_helpers");
|
|
9
9
|
const { getCurrentBranch, getLastDeployedSha } = require("./common_releaseManager");
|
|
10
10
|
const { testEquality } = require("./common_syncFiles");
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
const path = require('path');
|
|
2
|
-
const { env } = require('process');
|
|
3
2
|
|
|
4
3
|
module.exports = env => {
|
|
5
4
|
return {
|
|
@@ -7,37 +6,45 @@ module.exports = env => {
|
|
|
7
6
|
fake_customizations2: path.resolve(__dirname,'./fake_customizations2.js')
|
|
8
7
|
},
|
|
9
8
|
devServer: {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
9
|
+
static : {
|
|
10
|
+
directory: '.',
|
|
11
|
+
watch: {
|
|
12
|
+
ignored: [
|
|
13
|
+
"**/.git/**",
|
|
14
|
+
"**/integrationm/**",
|
|
15
|
+
"**/recordm-importer/**",
|
|
16
|
+
"**/node_modules/**",
|
|
17
|
+
"**/node_modules/.cache/**",
|
|
18
|
+
"**/services/**",
|
|
19
|
+
"**/" + process.env.dash_dir + "/**"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
22
|
},
|
|
23
|
-
|
|
23
|
+
hot:false,
|
|
24
24
|
port: 8040,
|
|
25
25
|
host: "0.0.0.0",
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
devMiddleware: {
|
|
27
|
+
stats: {
|
|
28
|
+
maxModules: 0 // Set the maximum number of modules to be shown
|
|
29
|
+
}
|
|
28
30
|
},
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
31
|
+
setupMiddlewares: (middlewares, devServer) => {
|
|
32
|
+
middlewares.push({
|
|
33
|
+
name: 'hello-world-test-one',
|
|
34
|
+
// `path` is optional
|
|
35
|
+
path: '*',
|
|
36
|
+
middleware: (req, res, next) => {
|
|
37
|
+
// Permite usar / ou /DASH_BOARD/ quando acedido directamente
|
|
38
|
+
if(req.url != "/") {
|
|
39
|
+
return next();
|
|
40
|
+
}
|
|
41
|
+
res.redirect(`/recordm/`);
|
|
42
|
+
},
|
|
37
43
|
});
|
|
44
|
+
return middlewares;
|
|
38
45
|
},
|
|
39
46
|
proxy: {
|
|
40
|
-
[ "**/" + env.
|
|
47
|
+
[ "**/" + process.env.dash_dir + "/**"]: {
|
|
41
48
|
target: "http://localhost:8041",
|
|
42
49
|
secure: false
|
|
43
50
|
},
|
|
@@ -47,7 +54,7 @@ module.exports = env => {
|
|
|
47
54
|
},
|
|
48
55
|
"/": {
|
|
49
56
|
logLevel: "warn",
|
|
50
|
-
target: env.
|
|
57
|
+
target: process.env.server,
|
|
51
58
|
secure: false,
|
|
52
59
|
ws: false,
|
|
53
60
|
changeOrigin: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cob-cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.32.0",
|
|
4
4
|
"description": "A command line utility to help Cult of Bits partners develop with higher speed and reusing common code and best practices.",
|
|
5
5
|
"preferGlobal": true,
|
|
6
6
|
"repository": {
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"cob-cli": "bin/cob-cli.js"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
+
"@webpack-cli/serve": "^2.0.1",
|
|
19
20
|
"axios": "^0.21.1",
|
|
20
21
|
"colors": "^1.4.0",
|
|
21
22
|
"commander": "^5.1.0",
|
|
@@ -27,11 +28,11 @@
|
|
|
27
28
|
"listr": "^0.14.3",
|
|
28
29
|
"ncp": "^2.0.0",
|
|
29
30
|
"omelette": "^0.4.15-1",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"webpack
|
|
33
|
-
"webpack-
|
|
34
|
-
"
|
|
31
|
+
"open": "^8.4.0",
|
|
32
|
+
"simple-git": "^3.15.1",
|
|
33
|
+
"webpack": "^5.75.0",
|
|
34
|
+
"webpack-cli": "^5.0.1",
|
|
35
|
+
"webpack-dev-server": "^4.11.1",
|
|
35
36
|
"xdg-basedir": "^5.1.0"
|
|
36
37
|
},
|
|
37
38
|
"keywords": [],
|