Merge pull request #13363 from Budibase/fix/account-portal-submodule
[Changed] Update portal submodule
This commit is contained in:
commit
0c89759e58
|
@ -65,8 +65,7 @@ jobs:
|
|||
|
||||
# Run build all the projects
|
||||
- name: Build
|
||||
run: |
|
||||
yarn build
|
||||
run: yarn build
|
||||
# Check the types of the projects built via esbuild
|
||||
- name: Check types
|
||||
run: |
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit f5b467b6b1c55c48847545db41be7b1c035e167a
|
||||
Subproject commit 60658a052d2642e5f4a8038e253f771a24f34907
|
|
@ -12,6 +12,13 @@ export default {
|
|||
format: "esm",
|
||||
file: "dist/bbui.es.js",
|
||||
},
|
||||
onwarn(warning, warn) {
|
||||
// suppress eval warnings
|
||||
if (warning.code === "EVAL") {
|
||||
return
|
||||
}
|
||||
warn(warning)
|
||||
},
|
||||
plugins: [
|
||||
resolve(),
|
||||
commonjs(),
|
||||
|
|
|
@ -45,7 +45,8 @@ export default {
|
|||
onwarn(warning, warn) {
|
||||
if (
|
||||
warning.code === "THIS_IS_UNDEFINED" ||
|
||||
warning.code === "CIRCULAR_DEPENDENCY"
|
||||
warning.code === "CIRCULAR_DEPENDENCY" ||
|
||||
warning.code === "EVAL"
|
||||
) {
|
||||
return
|
||||
}
|
||||
|
|
|
@ -17,6 +17,12 @@ const config = (format, outputFile) => ({
|
|||
format,
|
||||
file: outputFile,
|
||||
},
|
||||
onwarn(warning, warn) {
|
||||
if (warning.code === "EVAL") {
|
||||
return
|
||||
}
|
||||
warn(warning)
|
||||
},
|
||||
plugins: [
|
||||
typescript(),
|
||||
resolve({
|
||||
|
|
Loading…
Reference in New Issue