| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- const path = require('path')
- const { writeFileSync } = require('./lib/util')
- const { publicPackageStructs, bundleStructs } = require('./lib/package-index')
- const exec = require('./lib/shell').sync.withOptions({
- exitOnError: true,
- live: true
- })
- const PROPS_TO_COPY = [
- 'homepage',
- 'bugs',
- 'repository',
- 'license',
- 'author',
- ]
- exec([ path.join(__dirname, 'require-clean-working-tree.sh') ])
- let mainConfig = require('../package.json')
- let premiumConfig = require('../packages-premium/package.json')
- let configPaths = []
- let subjectStructs = publicPackageStructs.concat(bundleStructs)
- for (let struct of subjectStructs) {
- let configPath = path.join(__dirname, '..', struct.dir, 'package.json')
- let config = require(configPath)
- for (let propName of PROPS_TO_COPY) {
- if (propName in mainConfig) {
- config[propName] = mainConfig[propName]
- }
- if (struct.isPremium && (propName in premiumConfig)) {
- config[propName] = premiumConfig[propName]
- }
- }
- writeFileSync(configPath, JSON.stringify(config, null, ' ') + '\n')
- configPaths.push(configPath)
- }
- for (let configPath of configPaths) {
- exec(
- [ 'git', 'add', path.basename(configPath) ],
- { cwd: path.dirname(configPath) } // will do it in whatever git repo
- )
- }
- exec([ 'git', 'commit', '-m', 'updated package.jsons' ], { cwd: path.join(__dirname, '../packages-premium') })
- exec([ 'git', 'add', 'packages-premium' ], { cwd: path.join(__dirname, '..') })
- exec([ 'git', 'commit', '-m', 'updated package.jsons' ], { cwd: path.join(__dirname, '..') })
|