Ignore tests in build
This commit is contained in:
@@ -1,9 +0,0 @@
|
|||||||
{
|
|
||||||
"plugins": ["@babel/plugin-proposal-class-properties"],
|
|
||||||
"presets": ["@babel/preset-env"],
|
|
||||||
"env": {
|
|
||||||
"test": {
|
|
||||||
"plugins": ["@babel/plugin-transform-runtime"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
let ignore = [`**/dist`]
|
||||||
|
|
||||||
|
// Jest needs to compile this code, but generally we don't want this copied
|
||||||
|
// to output folders
|
||||||
|
if (process.env.NODE_ENV !== `test`) {
|
||||||
|
ignore.push(`**/__tests__`)
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
plugins: ["@babel/plugin-proposal-class-properties"],
|
||||||
|
presets: ["@babel/preset-env"],
|
||||||
|
env: {
|
||||||
|
test: {
|
||||||
|
plugins: ["@babel/plugin-transform-runtime"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
ignore,
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user