@budibase/server 2.6.19-alpha.0 → 2.6.19-alpha.2

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.
@@ -47,7 +47,7 @@ const getComponentLibraryManifest = (library) => __awaiter(void 0, void 0, void
47
47
  const appId = backend_core_1.context.getAppId();
48
48
  const filename = "manifest.json";
49
49
  if (environment_1.default.isDev() || environment_1.default.isTest()) {
50
- const path = (0, path_1.join)(exports.NODE_MODULES_PATH, "@budibase", "client", filename);
50
+ const path = (0, path_1.join)(filesystem_1.TOP_LEVEL_PATH, "../client", filename);
51
51
  // always load from new so that updates are refreshed
52
52
  delete require.cache[require.resolve(path)];
53
53
  return require(path);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/server",
3
3
  "email": "hi@budibase.com",
4
- "version": "2.6.19-alpha.0",
4
+ "version": "2.6.19-alpha.2",
5
5
  "description": "Budibase Web Server",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -45,12 +45,12 @@
45
45
  "license": "GPL-3.0",
46
46
  "dependencies": {
47
47
  "@apidevtools/swagger-parser": "10.0.3",
48
- "@budibase/backend-core": "2.6.19-alpha.0",
49
- "@budibase/client": "2.6.19-alpha.0",
50
- "@budibase/pro": "2.6.19-alpha.0",
51
- "@budibase/shared-core": "2.6.19-alpha.0",
52
- "@budibase/string-templates": "2.6.19-alpha.0",
53
- "@budibase/types": "2.6.19-alpha.0",
48
+ "@budibase/backend-core": "2.6.19-alpha.2",
49
+ "@budibase/client": "2.6.19-alpha.2",
50
+ "@budibase/pro": "2.6.19-alpha.2",
51
+ "@budibase/shared-core": "2.6.19-alpha.2",
52
+ "@budibase/string-templates": "2.6.19-alpha.2",
53
+ "@budibase/types": "2.6.19-alpha.2",
54
54
  "@bull-board/api": "3.7.0",
55
55
  "@bull-board/koa": "3.9.4",
56
56
  "@elastic/elasticsearch": "7.10.0",
@@ -177,5 +177,5 @@
177
177
  "optionalDependencies": {
178
178
  "oracledb": "5.3.0"
179
179
  },
180
- "gitHead": "82e867c0f5b41fe3af88333effeb88f29b8b4d23"
180
+ "gitHead": "62e6959d05c2e64f53bb4090b8f714937907efa5"
181
181
  }
@@ -35,7 +35,7 @@ export const getComponentLibraryManifest = async (library: string) => {
35
35
  const filename = "manifest.json"
36
36
 
37
37
  if (env.isDev() || env.isTest()) {
38
- const path = join(NODE_MODULES_PATH, "@budibase", "client", filename)
38
+ const path = join(TOP_LEVEL_PATH, "../client", filename)
39
39
  // always load from new so that updates are refreshed
40
40
  delete require.cache[require.resolve(path)]
41
41
  return require(path)