@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Docker.mjs +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.59.0-beta.2",
3
+ "version": "2.59.0-beta.4",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
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' : '--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
- if ( !fs.existsSync( bashrcFile ) ) {
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 ) ) {