@steedos/service-package-registry 2.7.15-beta.9 → 2.7.16-beta.1
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.
|
@@ -121,7 +121,7 @@ async function installModule(module, version, url, registry_url) {
|
|
|
121
121
|
// if( check !== false){
|
|
122
122
|
// return check;
|
|
123
123
|
// }
|
|
124
|
-
console.log('install package: ', module, version, url)
|
|
124
|
+
console.log('install package: ', module, version, url, registry_url)
|
|
125
125
|
module = module || "";
|
|
126
126
|
activePromise = activePromise.then(async function() {
|
|
127
127
|
//TODO: ensure module is 'safe'
|
|
@@ -198,6 +198,7 @@ async function installModule(module, version, url, registry_url) {
|
|
|
198
198
|
yarnArgs.push('--registry')
|
|
199
199
|
yarnArgs.push(registry_url)
|
|
200
200
|
}
|
|
201
|
+
console.log('command run:', yarnCommand, yarnArgs.join(' '))
|
|
201
202
|
return exec.run(yarnCommand,yarnArgs,{
|
|
202
203
|
cwd: installDir
|
|
203
204
|
}, true).then(result => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-package-registry",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.16-beta.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "package.service.js",
|
|
6
6
|
"scripts": {
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"author": "",
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@steedos/auth": "2.7.
|
|
13
|
-
"@steedos/core": "2.7.
|
|
14
|
-
"@steedos/metadata-core": "2.7.
|
|
15
|
-
"@steedos/objectql": "2.7.
|
|
16
|
-
"@steedos/service-package-loader": "2.7.
|
|
12
|
+
"@steedos/auth": "2.7.16-beta.1",
|
|
13
|
+
"@steedos/core": "2.7.16-beta.1",
|
|
14
|
+
"@steedos/metadata-core": "2.7.16-beta.1",
|
|
15
|
+
"@steedos/objectql": "2.7.16-beta.1",
|
|
16
|
+
"@steedos/service-package-loader": "2.7.16-beta.1",
|
|
17
17
|
"clone": "^2.1.2",
|
|
18
18
|
"fs-extra": "8.1.0",
|
|
19
19
|
"i18next": "20.3.2",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "0dd8f2b45a25260387a8c3fb96e95ab33edc5ca1"
|
|
36
36
|
}
|
|
@@ -394,8 +394,8 @@ module.exports = {
|
|
|
394
394
|
async handler(){
|
|
395
395
|
const settings = this.settings;
|
|
396
396
|
const packages = settings.STEEDOS_INITIAL_PACKAGES;
|
|
397
|
-
console.log('install initial packages: ', packages);
|
|
398
397
|
if(_.isString(packages) && packages){
|
|
398
|
+
console.log('install initial packages: ', packages);
|
|
399
399
|
for (const packageName of packages.split(',')) {
|
|
400
400
|
try {
|
|
401
401
|
const parsed = npa(packageName);
|