Skip to content

Check for babelrc up from given functions folder #98

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Check for babelrc up from functions folder
  • Loading branch information
schiehll committed Jan 3, 2019
commit 986e122dd99a0093fcc3d858668fadcbe6423cd4
20 changes: 18 additions & 2 deletions lib/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,27 @@ function getBabelTarget(envConfig) {
return unknown ? "6.10" : current.replace(/^nodejs/, "");
}

function haveBabelrc(functionsDir) {
const cwd = process.cwd();

return (
fs.existsSync(path.join(cwd, ".babelrc")) ||
functionsDir.split("/").reduce((foundBabelrc, dir) => {
if (foundBabelrc) return foundBabelrc;

const indexOf = functionsDir.indexOf(dir);
const dirToSearch = functionsDir.substr(0, indexOf);

return fs.existsSync(path.join(cwd, dirToSearch, ".babelrc"));
}, false)
);
}

function webpackConfig(dir, additionalConfig) {
var config = conf.load();
var envConfig = config.build.environment || config.build.Environment || {};
var babelOpts = { cacheDirectory: true };
if (!fs.existsSync(path.join(process.cwd(), ".babelrc"))) {
if (!haveBabelrc(dir)) {
babelOpts.presets = [
["@babel/preset-env", { targets: { node: getBabelTarget(envConfig) } }]
];
Expand Down Expand Up @@ -48,7 +64,7 @@ function webpackConfig(dir, additionalConfig) {
var webpackConfig = {
mode: "production",
resolve: {
extensions: ['.wasm', '.mjs', '.js', '.json', '.ts']
extensions: [".wasm", ".mjs", ".js", ".json", ".ts"]
},
module: {
rules: [
Expand Down
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy