Browse Source
Merge pull request #370 from Budibase/feature/add-bbui-css
adds bbui.css file
pull/376/head
Kevin Åberg Kultalahti
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
8 additions and
1 deletions
-
packages/builder/package.json
-
packages/builder/rollup.config.js
-
packages/builder/src/index.html
|
|
|
@ -39,7 +39,7 @@ |
|
|
|
}, |
|
|
|
"dependencies": { |
|
|
|
"@beyonk/svelte-notifications": "^2.0.3", |
|
|
|
"@budibase/bbui": "^1.1.1", |
|
|
|
"@budibase/bbui": "^1.8.0", |
|
|
|
"@budibase/client": "^0.0.32", |
|
|
|
"@nx-js/compiler-util": "^2.0.0", |
|
|
|
"codemirror": "^5.51.0", |
|
|
|
|
|
|
|
@ -165,6 +165,10 @@ export default { |
|
|
|
src: "node_modules/@budibase/client/dist/budibase-client.esm.mjs", |
|
|
|
dest: outputpath, |
|
|
|
}, |
|
|
|
{ |
|
|
|
src: "node_modules/@budibase/bbui/dist/bbui.css", |
|
|
|
dest: outputpath, |
|
|
|
}, |
|
|
|
], |
|
|
|
}), |
|
|
|
|
|
|
|
|
|
|
|
@ -1,5 +1,6 @@ |
|
|
|
<!doctype html> |
|
|
|
<html> |
|
|
|
|
|
|
|
<head> |
|
|
|
<meta charset='utf8'> |
|
|
|
<meta name='viewport' content='width=device-width'> |
|
|
|
@ -14,6 +15,7 @@ |
|
|
|
<link rel='stylesheet' href='/_builder/budibase.css'> |
|
|
|
<link rel='stylesheet' href='/_builder/monokai.css'> |
|
|
|
<link rel='stylesheet' href='/_builder/bundle.css'> |
|
|
|
<link rel='stylesheet' href='/_builder/bbui.css'> |
|
|
|
<link rel='stylesheet' href='/_builder/fonts.css'> |
|
|
|
<link rel='stylesheet' href="/_builder/uikit.min.css"> |
|
|
|
</head> |
|
|
|
@ -21,4 +23,5 @@ |
|
|
|
<body id="app"> |
|
|
|
<script src='/_builder/bundle.js'></script> |
|
|
|
</body> |
|
|
|
|
|
|
|
</html> |