mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
👕
This commit is contained in:
@@ -107,7 +107,7 @@ module.exports = function () {
|
||||
for (let lessFilePath of glob.sync(path.join(CONFIG.intermediateAppPath, 'node_modules', 'atom-ui', '**', '*.less'))) {
|
||||
saveIntoSnapshotAuxiliaryData(lessFilePath, fs.readFileSync(lessFilePath, 'utf8'))
|
||||
}
|
||||
|
||||
|
||||
function cacheCompiledCSS (lessCache, lessFilePath, importFallbackVariables) {
|
||||
let lessSource = fs.readFileSync(lessFilePath, 'utf8')
|
||||
if (importFallbackVariables) {
|
||||
|
||||
@@ -71,7 +71,7 @@ for (let packageName in CONFIG.appMetadata.packageDependencies) {
|
||||
console.log(`Executing ${packageName} tests`.bold.green)
|
||||
const cp = childProcess.spawn(executablePath, testArguments)
|
||||
let stderrOutput = ''
|
||||
cp.stderr.on('data', data => (stderrOutput += data))
|
||||
cp.stderr.on('data', data => { stderrOutput += data })
|
||||
cp.on('error', error => { callback(error) })
|
||||
cp.on('close', exitCode => {
|
||||
if (exitCode !== 0) {
|
||||
|
||||
Reference in New Issue
Block a user