mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
4980439f0c
This change will allow us to use `npm ci` instead of `npm install` on CI, so that we can respect the package-lock.json file.
47 lines
1.4 KiB
JavaScript
Executable File
47 lines
1.4 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
'use strict'
|
|
|
|
const path = require('path')
|
|
const CONFIG = require('./config')
|
|
const childProcess = require('child_process')
|
|
const cleanDependencies = require('./lib/clean-dependencies')
|
|
const deleteMsbuildFromPath = require('./lib/delete-msbuild-from-path')
|
|
const dependenciesFingerprint = require('./lib/dependencies-fingerprint')
|
|
const installApm = require('./lib/install-apm')
|
|
const runApmInstall = require('./lib/run-apm-install')
|
|
const installScriptDependencies = require('./lib/install-script-dependencies')
|
|
const verifyMachineRequirements = require('./lib/verify-machine-requirements')
|
|
|
|
process.on('unhandledRejection', function (e) {
|
|
console.error(e.stack || e)
|
|
process.exit(1)
|
|
})
|
|
|
|
// We can't use yargs until installScriptDependencies() is executed, so...
|
|
let ci = process.argv.indexOf('--ci') !== -1
|
|
|
|
if (!ci && process.env.CI === 'true' && process.argv.indexOf('--no-ci') === -1) {
|
|
console.log('Automatically enabling --ci because CI is set in the environment')
|
|
ci = true
|
|
}
|
|
|
|
verifyMachineRequirements(ci)
|
|
|
|
if (dependenciesFingerprint.isOutdated()) {
|
|
cleanDependencies()
|
|
}
|
|
|
|
if (process.platform === 'win32') deleteMsbuildFromPath()
|
|
|
|
installScriptDependencies(ci)
|
|
installApm(ci)
|
|
childProcess.execFileSync(
|
|
CONFIG.getApmBinPath(),
|
|
['--version'],
|
|
{stdio: 'inherit'}
|
|
)
|
|
runApmInstall(CONFIG.repositoryRootPath, ci)
|
|
|
|
dependenciesFingerprint.write()
|