packages changes and bugfix
This commit is contained in:
parent
cb026b017b
commit
22bed49a09
|
@ -5,7 +5,9 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "rollup -c",
|
"build": "rollup -c",
|
||||||
"start": "rollup -c -w",
|
"start": "rollup -c -w",
|
||||||
"test": "jest"
|
"test": "jest",
|
||||||
|
"dev:builder" :"rollup -c -w"
|
||||||
|
|
||||||
},
|
},
|
||||||
"jest": {
|
"jest": {
|
||||||
"globals": {
|
"globals": {
|
||||||
|
|
|
@ -8,10 +8,6 @@ export let color = "var(--secondary100)";
|
||||||
export let hoverColor = "var(--secondary75)";
|
export let hoverColor = "var(--secondary75)";
|
||||||
export let attributes = {};
|
export let attributes = {};
|
||||||
|
|
||||||
$: borderClass = grouped
|
|
||||||
? ""
|
|
||||||
: "border-normal";
|
|
||||||
|
|
||||||
let currentAttributes = [];
|
let currentAttributes = [];
|
||||||
const addAttributes = (node, attributes) => {
|
const addAttributes = (node, attributes) => {
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Contributors
|
Contributors
|
||||||
===
|
===
|
||||||
|
|
||||||
* Michael Shanks - [@mikebudi](https://github.com/mjashanks)
|
* Michael Shanks - [@mjashanks](https://github.com/mjashanks)
|
||||||
* Daniel Loudon - [@danbudi](https://github.com/danbudi)
|
* Daniel Loudon - [@danbudi](https://github.com/danbudi)
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"name": "@budibase/core",
|
"name": "@budibase/core",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "core javascript library for budibase",
|
"description": "core javascript library for budibase",
|
||||||
"main": "/dist/budibase-core.umd.js",
|
"main": "dist/budibase-core.umd.js",
|
||||||
"module": "dist/budibase-core.esm.js",
|
"module": "dist/budibase-core.esm.js",
|
||||||
"files": ["/dist/**", "!/dist/node_modules"],
|
"files": ["dist/**", "!dist/node_modules"],
|
||||||
"directories": {
|
"directories": {
|
||||||
"test": "test"
|
"test": "test"
|
||||||
},
|
},
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "jest",
|
"test": "jest",
|
||||||
"build": "cd appPackages/master && yarn && cd ../testApp && yarn && cd ../testApp2 && yarn",
|
"build": "cd appPackages/master && yarn && cd ../testApp && yarn && cd ../testApp2 && yarn",
|
||||||
"initialise":"node initialise/initialiseBudibase --datastore local --username admin --password admin --rootPath .data --cleanDev"
|
"initialise":"node initialise/initialiseBudibase --datastore local --username admin --password admin --rootPath .data --cleanDev",
|
||||||
|
"dev:builder" :"node index"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"budibase"
|
"budibase"
|
||||||
|
|
|
@ -17,13 +17,15 @@ if you have problems, this might help: https://github.com/nodejs/node-gyp/issues
|
||||||
|
|
||||||
### 2. Install and Build
|
### 2. Install and Build
|
||||||
|
|
||||||
`lerna bootstrap`
|
`lerna bootstrap` will install all modules
|
||||||
|
|
||||||
`lerna run build`
|
`lerna run build` will build all pakcages
|
||||||
|
|
||||||
`yarn run initialise-server`
|
`yarn run initialise` will initialise your budibase (i.e. create local database)
|
||||||
|
|
||||||
|
### 3. Running
|
||||||
|
|
||||||
|
`lerna run dev:builder` - will run up the builder and server together - i.e. when you want to do some work on the builder
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue