1
0
Fork 0
mirror of synced 2024-06-14 08:24:48 +12:00

Remove lodash and sort dependencies out

This commit is contained in:
Andrew Kingston 2022-01-31 09:32:06 +00:00
parent 5718d4925a
commit 37e72db2a8
10 changed files with 1107 additions and 391 deletions

View file

@ -3,8 +3,7 @@
import "@spectrum-css/table/dist/index-vars.css"
import CellRenderer from "./CellRenderer.svelte"
import SelectEditRenderer from "./SelectEditRenderer.svelte"
import { cloneDeep } from "lodash"
import { deepGet } from "../utils/helpers"
import { cloneDeep, deepGet } from "../utils/helpers"
/**
* The expected schema is our normal couch schemas for our tables.

View file

@ -64,3 +64,7 @@ export const deepSet = (obj, key, value) => {
}
obj[split[split.length - 1]] = value
}
export const cloneDeep = obj => {
return JSON.parse(JSON.stringify(obj))
}

View file

@ -2,4 +2,5 @@
node_modules
package-lock.json
release/
dist/
dist/
stats.html

View file

@ -20,11 +20,15 @@
},
"dependencies": {
"@budibase/bbui": "^1.0.46-alpha.7",
"@budibase/standard-components": "^0.9.139",
"@budibase/string-templates": "^1.0.46-alpha.7",
"apexcharts": "^3.22.1",
"dayjs": "^1.10.5",
"regexparam": "^1.3.0",
"rollup-plugin-polyfill-node": "^0.8.0",
"shortid": "^2.2.15",
"svelte": "^3.38.2",
"svelte-apexcharts": "^1.0.2",
"svelte-flatpickr": "^3.1.0",
"svelte-spa-router": "^3.0.5"
},
"devDependencies": {
@ -39,10 +43,6 @@
"@spectrum-css/tag": "^3.1.4",
"@spectrum-css/typography": "^3.0.2",
"@spectrum-css/vars": "^3.0.1",
"apexcharts": "^3.22.1",
"dayjs": "^1.10.5",
"fs-extra": "^8.1.0",
"jsdom": "^16.0.1",
"postcss": "^8.2.10",
"rollup": "^2.44.0",
"rollup-plugin-json": "^4.0.0",
@ -50,9 +50,7 @@
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.38.2",
"svelte-apexcharts": "^1.0.2",
"svelte-flatpickr": "^3.1.0"
"rollup-plugin-visualizer": "^5.5.4"
},
"gitHead": "d1836a898cab3f8ab80ee6d8f42be1a9eed7dcdc"
}

View file

@ -8,6 +8,7 @@ import svg from "rollup-plugin-svg"
import json from "rollup-plugin-json"
import nodePolyfills from "rollup-plugin-polyfill-node"
import path from "path"
import { visualizer } from "rollup-plugin-visualizer"
const production = !process.env.ROLLUP_WATCH
const ignoredWarnings = [
@ -83,6 +84,7 @@ export default {
svg(),
json(),
production && terser(),
visualizer(),
],
watch: {
clearScreen: false,

View file

@ -3,8 +3,7 @@
import { derived, get, writable } from "svelte/store"
import { createValidatorFromConstraints } from "./validation"
import { generateID } from "utils/helpers"
import { deepGet, deepSet } from "@budibase/bbui"
import { cloneDeep } from "lodash/fp"
import { cloneDeep, deepGet, deepSet } from "@budibase/bbui"
export let dataSource
export let disabled = false

View file

@ -1,4 +1,4 @@
import { cloneDeep } from "lodash/fp"
import { cloneDeep } from "@budibase/bbui"
import { processString, processObjectSync } from "@budibase/string-templates"
// Regex to test inputs with to see if they are likely candidates for template strings

View file

@ -1,6 +1,6 @@
import DataFetch from "./DataFetch.js"
import { executeQuery, fetchQueryDefinition } from "api"
import { cloneDeep } from "lodash/fp"
import { cloneDeep } from "@budibase/bbui"
import { get } from "svelte/store"
export default class QueryFetch extends DataFetch {

File diff suppressed because it is too large Load diff

View file

@ -1,2 +1,3 @@
dist/
node_modules/
stats.html