template app - includes MD by default
This commit is contained in:
parent
30ccde57b2
commit
2d0e027582
|
@ -8,6 +8,7 @@
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@budibase/standard-components": "^0.0.3"
|
"@budibase/standard-components": "^0.0.3",
|
||||||
|
"@budibase/materialdesign-components": "^0.0.16"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"main": {
|
|
||||||
"index": {},
|
|
||||||
"appBody": ""
|
|
||||||
},
|
|
||||||
"unauthenticated": {
|
|
||||||
"index": {},
|
|
||||||
"appBody": ""
|
|
||||||
},
|
|
||||||
"componentLibraries": [
|
|
||||||
"@budibase/standard-components"
|
|
||||||
],
|
|
||||||
"stylesheets": []
|
|
||||||
}
|
|
|
@ -2,7 +2,7 @@
|
||||||
"title": "Test App",
|
"title": "Test App",
|
||||||
"favicon": "./_shared/favicon.png",
|
"favicon": "./_shared/favicon.png",
|
||||||
"stylesheets": [],
|
"stylesheets": [],
|
||||||
"componentLibraries": ["@budibase/standard-components"],
|
"componentLibraries": ["@budibase/standard-components", "@budibase/materialdesign-components"],
|
||||||
"props" : {
|
"props" : {
|
||||||
"_component": "@budibase/standard-components/container",
|
"_component": "@budibase/standard-components/container",
|
||||||
"_children": [],
|
"_children": [],
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"title": "Test App",
|
"title": "Test App",
|
||||||
"favicon": "./_shared/favicon.png",
|
"favicon": "./_shared/favicon.png",
|
||||||
"stylesheets": [],
|
"stylesheets": [],
|
||||||
"componentLibraries": ["@budibase/standard-components"],
|
"componentLibraries": ["@budibase/standard-components", "@budibase/materialdesign-components"],
|
||||||
"props" : {
|
"props" : {
|
||||||
"_component": "@budibase/standard-components/container",
|
"_component": "@budibase/standard-components/container",
|
||||||
"_children": [],
|
"_children": [],
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"svelte"
|
"svelte"
|
||||||
],
|
],
|
||||||
"version": "0.0.15",
|
"version": "0.0.16",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"gitHead": "115189f72a850bfb52b65ec61d932531bf327072",
|
"gitHead": "115189f72a850bfb52b65ec61d932531bf327072",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -26,7 +26,7 @@ const publicMain = appName =>
|
||||||
"lib",
|
"lib",
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"@budibase",
|
"@budibase",
|
||||||
"standard-components"
|
"materialdesign-components"
|
||||||
)
|
)
|
||||||
const publicUnauth = appName =>
|
const publicUnauth = appName =>
|
||||||
join(
|
join(
|
||||||
|
@ -37,7 +37,7 @@ const publicUnauth = appName =>
|
||||||
"lib",
|
"lib",
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"@budibase",
|
"@budibase",
|
||||||
"standard-components"
|
"materialdesign-components"
|
||||||
)
|
)
|
||||||
const nodeModulesDist = appName =>
|
const nodeModulesDist = appName =>
|
||||||
join(
|
join(
|
||||||
|
@ -45,11 +45,18 @@ const nodeModulesDist = appName =>
|
||||||
appName,
|
appName,
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"@budibase",
|
"@budibase",
|
||||||
"standard-components",
|
"materialdesign-components",
|
||||||
"dist"
|
"dist"
|
||||||
)
|
)
|
||||||
|
|
||||||
const nodeModules = appName =>
|
const nodeModules = appName =>
|
||||||
join(appPackages, appName, "node_modules", "@budibase", "standard-components")
|
join(
|
||||||
|
appPackages,
|
||||||
|
appName,
|
||||||
|
"node_modules",
|
||||||
|
"@budibase",
|
||||||
|
"materialdesign-components"
|
||||||
|
)
|
||||||
|
|
||||||
;(async () => {
|
;(async () => {
|
||||||
const apps = await readdir(appPackages)
|
const apps = await readdir(appPackages)
|
||||||
|
|
Loading…
Reference in New Issue