removing electron config
This commit is contained in:
parent
617a3035d2
commit
0fce78d19d
|
@ -8,29 +8,6 @@
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Budibase/budibase.git"
|
"url": "https://github.com/Budibase/budibase.git"
|
||||||
},
|
},
|
||||||
"build": {
|
|
||||||
"icon": "./build/icons/512x512.png",
|
|
||||||
"appId": "com.budibase.builder",
|
|
||||||
"productName": "Budibase Builder",
|
|
||||||
"afterSign": "electron-builder-notarize",
|
|
||||||
"mac": {
|
|
||||||
"icon": "./assets/icons/icon.icns",
|
|
||||||
"category": "public.app-category.developer-tools",
|
|
||||||
"hardenedRuntime": true
|
|
||||||
},
|
|
||||||
"linux": {
|
|
||||||
"maintainer": "Budibase",
|
|
||||||
"icon": "./build/icons/",
|
|
||||||
"target": [
|
|
||||||
"deb",
|
|
||||||
"AppImage"
|
|
||||||
],
|
|
||||||
"category": "Development"
|
|
||||||
},
|
|
||||||
"extraMetadata": {
|
|
||||||
"name": "Budibase Builder"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "jest --testPathIgnorePatterns=routes && yarn run test:integration",
|
"test": "jest --testPathIgnorePatterns=routes && yarn run test:integration",
|
||||||
"test:integration": "jest --coverage --detectOpenHandles",
|
"test:integration": "jest --coverage --detectOpenHandles",
|
||||||
|
@ -41,9 +18,6 @@
|
||||||
"dev:stack:down": "node scripts/dev/manage.js down",
|
"dev:stack:down": "node scripts/dev/manage.js down",
|
||||||
"dev:stack:nuke": "node scripts/dev/manage.js nuke",
|
"dev:stack:nuke": "node scripts/dev/manage.js nuke",
|
||||||
"dev:builder": "yarn run dev:stack:up && nodemon src/index.js",
|
"dev:builder": "yarn run dev:stack:up && nodemon src/index.js",
|
||||||
"electron": "electron src/electron.js",
|
|
||||||
"build:electron": "electron-builder --dir",
|
|
||||||
"publish:electron": "electron-builder -mwl --publish always",
|
|
||||||
"lint": "eslint --fix src/",
|
"lint": "eslint --fix src/",
|
||||||
"initialise": "node scripts/initialise.js"
|
"initialise": "node scripts/initialise.js"
|
||||||
},
|
},
|
||||||
|
|
|
@ -392,7 +392,7 @@ describe("/rows", () => {
|
||||||
await setup.switchToSelfHosted(async () => {
|
await setup.switchToSelfHosted(async () => {
|
||||||
const enriched = await outputProcessing(config.getAppId(), table, [row])
|
const enriched = await outputProcessing(config.getAppId(), table, [row])
|
||||||
expect(enriched[0].attachment[0].url).toBe(
|
expect(enriched[0].attachment[0].url).toBe(
|
||||||
`/prod-budi-app-assets/assets/${config.getAppId()}/attachment/test/thing.csv`
|
`/prod-budi-app-assets/${config.getAppId()}/attachment/test/thing.csv`
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -103,7 +103,7 @@ exports.AutoFieldSubTypes = {
|
||||||
AUTO_ID: "autoID",
|
AUTO_ID: "autoID",
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.OBJ_STORE_DIRECTORY = "/prod-budi-app-assets/assets"
|
exports.OBJ_STORE_DIRECTORY = "/prod-budi-app-assets"
|
||||||
exports.BaseQueryVerbs = {
|
exports.BaseQueryVerbs = {
|
||||||
CREATE: "create",
|
CREATE: "create",
|
||||||
READ: "read",
|
READ: "read",
|
||||||
|
|
Loading…
Reference in New Issue