mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
3bd5c2d37d
Enable option in glob to disable directories from being returned when finding paths to transpile during compilation
33 lines
1011 B
JavaScript
33 lines
1011 B
JavaScript
'use strict'
|
|
|
|
const CompileCache = require('../../src/compile-cache')
|
|
const fs = require('fs')
|
|
const glob = require('glob')
|
|
const path = require('path')
|
|
|
|
const CONFIG = require('../config')
|
|
|
|
module.exports = function () {
|
|
console.log(`Transpiling CSON paths in ${CONFIG.intermediateAppPath}`)
|
|
for (let path of getPathsToTranspile()) {
|
|
transpileCsonPath(path)
|
|
}
|
|
}
|
|
|
|
function getPathsToTranspile () {
|
|
let paths = []
|
|
for (let packageName of Object.keys(CONFIG.appMetadata.packageDependencies)) {
|
|
paths = paths.concat(glob.sync(
|
|
path.join(CONFIG.intermediateAppPath, 'node_modules', packageName, '**', '*.cson'),
|
|
{ignore: path.join(CONFIG.intermediateAppPath, 'node_modules', packageName, 'spec', '**', '*.cson'), nodir: true}
|
|
))
|
|
}
|
|
return paths
|
|
}
|
|
|
|
function transpileCsonPath (csonPath) {
|
|
const jsonPath = csonPath.replace(/cson$/g, 'json')
|
|
fs.writeFileSync(jsonPath, JSON.stringify(CompileCache.addPathToCache(csonPath, CONFIG.atomHomeDirPath)))
|
|
fs.unlinkSync(csonPath)
|
|
}
|