mirror of
https://github.com/atom/atom.git
synced 2026-02-10 14:45:11 -05:00
32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
// This module exports a function that copies all the static assets into the
|
|
// appropriate location in the build output directory.
|
|
|
|
'use strict'
|
|
|
|
const path = require('path')
|
|
const fs = require('fs-extra')
|
|
const CONFIG = require('../config')
|
|
const glob = require('glob')
|
|
const includePathInPackagedApp = require('./include-path-in-packaged-app')
|
|
|
|
module.exports = function () {
|
|
console.log(`Copying assets to ${CONFIG.intermediateAppPath}`);
|
|
let srcPaths = [
|
|
path.join(CONFIG.repositoryRootPath, 'benchmarks', 'benchmark-runner.js'),
|
|
path.join(CONFIG.repositoryRootPath, 'dot-atom'),
|
|
path.join(CONFIG.repositoryRootPath, 'exports'),
|
|
path.join(CONFIG.repositoryRootPath, 'package.json'),
|
|
path.join(CONFIG.repositoryRootPath, 'static'),
|
|
path.join(CONFIG.repositoryRootPath, 'src'),
|
|
path.join(CONFIG.repositoryRootPath, 'vendor')
|
|
]
|
|
for (let srcPath of srcPaths) {
|
|
fs.copySync(srcPath, computeDestinationPath(srcPath), {filter: includePathInPackagedApp})
|
|
}
|
|
}
|
|
|
|
function computeDestinationPath (srcPath) {
|
|
const relativePath = path.relative(CONFIG.repositoryRootPath, srcPath)
|
|
return path.join(CONFIG.intermediateAppPath, relativePath)
|
|
}
|