forked from react-bootstrap/react-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fixed] Use babel api to avoid command line conflicts between Linux a…
…nd Windows
- Loading branch information
Showing
5 changed files
with
56 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import { transform } from 'babel-core'; | ||
import resolveRc from 'babel-core/lib/babel/tools/resolve-rc'; | ||
import * as babelUtil from 'babel-core/lib/babel/util'; | ||
import glob from 'glob'; | ||
import fs from 'fs'; | ||
import path from 'path'; | ||
import outputFileSync from 'output-file-sync'; | ||
|
||
export function buildContent(content, filename, destination, babelOptions={}) { | ||
const result = transform(content, resolveRc(filename, babelOptions)); | ||
outputFileSync(destination, result.code, {encoding: 'utf8'}); | ||
} | ||
|
||
export function buildFile(filename, destination, babelOptions={}) { | ||
const content = fs.readFileSync(filename, {encoding: 'utf8'}); | ||
if(babelUtil.canCompile(filename)) { | ||
// Get file basename without the extension (in case not .js) | ||
let outputName = path.basename(filename, path.extname(filename)); | ||
// append the file basename with extension .js | ||
let outputPath = path.join(destination, outputName + '.js'); | ||
// console.log('%s => %s', filename, outputPath); | ||
buildContent(content, filename, outputPath, babelOptions); | ||
} | ||
} | ||
|
||
export function buildFolder(folderPath, destination, babelOptions={}, firstFolder=true) { | ||
let stats = fs.statSync(folderPath); | ||
|
||
if(stats.isFile()) { | ||
buildFile(folderPath, destination, babelOptions); | ||
} else if(stats.isDirectory()) { | ||
let outputPath = firstFolder ? destination : path.join(destination, path.basename(folderPath)); | ||
let files = fs.readdirSync(folderPath).map(file => path.join(folderPath, file)); | ||
files.forEach(filename => buildFolder(filename, outputPath, babelOptions, false)); | ||
} | ||
} | ||
|
||
export function buildGlob(filesGlob, destination, babelOptions={}) { | ||
let files = glob.sync(filesGlob); | ||
if (!files.length) { | ||
files = [filesGlob]; | ||
} | ||
files.forEach(filename => buildFolder(filename, destination, babelOptions, true)); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters