adds string-templates to trasnformIgnorePatterns
This commit is contained in:
parent
83efcaf12f
commit
c1f9704dc1
|
@ -44,16 +44,14 @@
|
||||||
"^.+.svelte$": "svelte-jester"
|
"^.+.svelte$": "svelte-jester"
|
||||||
},
|
},
|
||||||
"transformIgnorePatterns": [
|
"transformIgnorePatterns": [
|
||||||
"/node_modules/(?!svelte).+\\.js$"
|
"/node_modules/(?!svelte).+\\.js$",
|
||||||
|
".*string-templates.*"
|
||||||
],
|
],
|
||||||
"modulePathIgnorePatterns": [
|
"modulePathIgnorePatterns": [
|
||||||
"<rootDir>/cypress/"
|
"<rootDir>/cypress/"
|
||||||
],
|
],
|
||||||
"setupFilesAfterEnv": [
|
"setupFilesAfterEnv": [
|
||||||
"@testing-library/jest-dom/extend-expect"
|
"@testing-library/jest-dom/extend-expect"
|
||||||
],
|
|
||||||
"setupFiles": [
|
|
||||||
"./scripts/jestSetup.js"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
|
@ -88,17 +86,10 @@
|
||||||
"yup": "0.29.2"
|
"yup": "0.29.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.12.14",
|
|
||||||
"@babel/plugin-transform-runtime": "^7.13.10",
|
|
||||||
"@babel/preset-env": "^7.13.12",
|
|
||||||
"@babel/runtime": "^7.13.10",
|
|
||||||
"@rollup/plugin-alias": "^3.0.1",
|
"@rollup/plugin-alias": "^3.0.1",
|
||||||
"@rollup/plugin-commonjs": "^16.0.0",
|
"@rollup/plugin-commonjs": "^16.0.0",
|
||||||
"@rollup/plugin-json": "^4.0.3",
|
"@rollup/plugin-json": "^4.0.3",
|
||||||
"@sveltech/routify": "1.7.11",
|
"@sveltech/routify": "1.7.11",
|
||||||
"@testing-library/jest-dom": "^5.11.10",
|
|
||||||
"@testing-library/svelte": "^3.0.0",
|
|
||||||
"babel-jest": "^26.6.3",
|
|
||||||
"cypress": "^5.1.0",
|
"cypress": "^5.1.0",
|
||||||
"cypress-terminal-report": "^1.4.1",
|
"cypress-terminal-report": "^1.4.1",
|
||||||
"eslint-plugin-cypress": "^2.11.1",
|
"eslint-plugin-cypress": "^2.11.1",
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
// Array.flat needs polyfilled in < Node 11
|
|
||||||
if (!Array.prototype.flat) {
|
|
||||||
Object.defineProperty(Array.prototype, "flat", {
|
|
||||||
configurable: true,
|
|
||||||
value: function flat() {
|
|
||||||
var depth = isNaN(arguments[0]) ? 1 : Number(arguments[0])
|
|
||||||
|
|
||||||
return depth
|
|
||||||
? Array.prototype.reduce.call(
|
|
||||||
this,
|
|
||||||
function(acc, cur) {
|
|
||||||
if (Array.isArray(cur)) {
|
|
||||||
acc.push.apply(acc, flat.call(cur, depth - 1))
|
|
||||||
} else {
|
|
||||||
acc.push(cur)
|
|
||||||
}
|
|
||||||
|
|
||||||
return acc
|
|
||||||
},
|
|
||||||
[]
|
|
||||||
)
|
|
||||||
: Array.prototype.slice.call(this)
|
|
||||||
},
|
|
||||||
writable: true,
|
|
||||||
})
|
|
||||||
}
|
|
Loading…
Reference in New Issue