@budibase/pro 2.7.33 → 2.7.34-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +32 -18
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # Budibase Pro
2
+
3
+ Welcome to Budibase Pro. This repo is the home for closed source Budibase features and also the integration point for all things licensing.
4
+
5
+ This repo acts as a library and is shared between Budibase and the Account Portal.
6
+ For a general overview of the pro package see the [licensing documentation](https://budibase.atlassian.net/wiki/spaces/EN/pages/26050577/budibase+pro+package) on confluence.
7
+
8
+ For anything else related to local development see the [docs](./docs/readme.md)
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "dist"
5
5
  ],
6
6
  "license": "UNLICENSED",
7
- "version": "2.7.33",
7
+ "version": "2.7.34-alpha.0",
8
8
  "description": "Budibase Pro (Backend)",
9
9
  "main": "dist/index.js",
10
10
  "types": "dist/src/index.d.ts",
@@ -12,23 +12,11 @@
12
12
  "type": "git",
13
13
  "url": "https://github.com/Budibase/budibase-pro.git"
14
14
  },
15
- "scripts": {
16
- "prebuild": "rimraf dist",
17
- "build": "rollup -c",
18
- "test": "jest --coverage --runInBand",
19
- "test:watch": "jest --watch --runInBand",
20
- "license:update": "node scripts/licenses/updateLicense.js",
21
- "license:generate": "yarn run license:update && ts-node scripts/licenses/generate.ts"
22
- },
23
- "keywords": [
24
- "budibase"
25
- ],
26
- "author": "Budibase",
27
15
  "dependencies": {
28
- "@budibase/backend-core": "2.7.33",
29
- "@budibase/shared-core": "2.7.33",
30
- "@budibase/string-templates": "2.7.33",
31
- "@budibase/types": "2.7.33",
16
+ "@budibase/backend-core": "2.7.34-alpha.0",
17
+ "@budibase/shared-core": "2.7.34-alpha.0",
18
+ "@budibase/string-templates": "2.7.34-alpha.0",
19
+ "@budibase/types": "2.7.34-alpha.0",
32
20
  "@koa/router": "8.0.8",
33
21
  "bull": "4.10.1",
34
22
  "joi": "17.6.0",
@@ -52,8 +40,15 @@
52
40
  "@types/lodash": "4.14.180",
53
41
  "@types/node": "14.18.20",
54
42
  "@types/node-fetch": "2.6.1",
43
+ "babel-eslint": "^10.0.3",
55
44
  "copyfiles": "^2.4.1",
45
+ "eslint": "^7.28.0",
46
+ "eslint-plugin-cypress": "^2.11.3",
47
+ "eslint-plugin-svelte3": "^3.2.0",
48
+ "husky": "^7.0.1",
56
49
  "jest": "28.1.1",
50
+ "prettier": "^2.3.1",
51
+ "prettier-plugin-svelte": "^2.3.0",
57
52
  "rimraf": "3.0.2",
58
53
  "rollup": "2.45.2",
59
54
  "rollup-plugin-terser": "^7.0.2",
@@ -62,6 +57,25 @@
62
57
  "ts-node": "10.8.1",
63
58
  "typescript": "4.7.3"
64
59
  },
60
+ "scripts": {
61
+ "setup": "yarn && yarn bootstrap && yarn build",
62
+ "dev": "lerna run dev --stream",
63
+ "prebuild": "rimraf dist",
64
+ "build": "rollup -c",
65
+ "test": "jest --coverage --runInBand",
66
+ "test:watch": "jest --watch --runInBand",
67
+ "license:update": "node scripts/licenses/updateLicense.js",
68
+ "license:generate": "yarn run license:update && ts-node scripts/licenses/generate.ts",
69
+ "lint:eslint": "eslint packages",
70
+ "lint:prettier": "prettier --check \"packages/**/*.{js,ts,json,svelte}\"",
71
+ "lint": "yarn run lint:eslint && yarn run lint:prettier",
72
+ "lint:fix:eslint": "eslint --fix packages",
73
+ "lint:fix:prettier": "prettier --write \"packages/**/*.{js,ts,json,svelte}\"",
74
+ "lint:fix:ts": "lerna run lint:fix",
75
+ "lint:fix": "yarn run lint:fix:ts && yarn run lint:fix:prettier && yarn run lint:fix:eslint",
76
+ "security:audit": "node scripts/audit.js",
77
+ "postinstall": "husky install"
78
+ },
65
79
  "nx": {
66
80
  "targets": {
67
81
  "build": {
@@ -77,5 +91,5 @@
77
91
  }
78
92
  }
79
93
  },
80
- "gitHead": "36a5d6ebbe381fd2dc578abade0c4a06dd620740"
94
+ "gitHead": "cccf8af5f375f074bef7420b148dda909e97ce28"
81
95
  }