@leverege/build-tools 2.59.0-beta.2 → 2.59.0-beta.4
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/package.json +1 -1
- package/src/Docker.mjs +4 -2
package/package.json
CHANGED
package/src/Docker.mjs
CHANGED
|
@@ -49,7 +49,7 @@ const defaultSettings = {
|
|
|
49
49
|
date : getDateTimestamp(),
|
|
50
50
|
nodeimage : process.env.USE_NODEJS_22 ? 'jod-alpine' : 'iron-alpine',
|
|
51
51
|
imageBase : process.env.USE_NODEJS_22 ? 'node:jod-alpine' : 'node:iron-alpine',
|
|
52
|
-
npmlogging : process.env.VERBOSE_NPM_LOGGING ? '--ddd' : '--
|
|
52
|
+
npmlogging : process.env.VERBOSE_NPM_LOGGING ? '--ddd' : '--silent',
|
|
53
53
|
pluginfile : '# NO PLUGIN',
|
|
54
54
|
preInstallPluginfile : '# NO PRE-INSTALL PLUGIN',
|
|
55
55
|
regvers : 'package.version',
|
|
@@ -86,7 +86,9 @@ const generateDockerfile = ( options ) => {
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
const bashrcFile = './docker/bashrc'
|
|
89
|
-
|
|
89
|
+
// DISABLING exists check. With addition of Bashrc.plugin, the file needs to
|
|
90
|
+
// always be created or we encounter errors
|
|
91
|
+
if ( true ) { // !fs.existsSync( bashrcFile ) ) {
|
|
90
92
|
let bf = bashrcTemplate
|
|
91
93
|
const bashrcFilePlugin = './docker/Bashrc.plugin'
|
|
92
94
|
if ( fs.existsSync( bashrcFilePlugin ) ) {
|