mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
19 lines
537 B
JavaScript
19 lines
537 B
JavaScript
// This module exports paths, names, and other metadata that is referenced
|
|
// throughout the build.
|
|
|
|
'use strict'
|
|
|
|
const path = require('path')
|
|
|
|
const appMetadata = require('../package.json')
|
|
|
|
const repositoryRootPath = path.resolve(__dirname, '..')
|
|
const buildOutputPath = path.join(repositoryRootPath, 'out')
|
|
const intermediateAppPath = path.join(buildOutputPath, 'app')
|
|
const cachePath = path.join(repositoryRootPath, 'cache')
|
|
|
|
module.exports = {
|
|
appMetadata,
|
|
repositoryRootPath, buildOutputPath, intermediateAppPath, cachePath
|
|
}
|