@carbonorm/carbonreact 3.2.8 → 3.2.10

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.
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
3
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
4
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -50,7 +51,7 @@ var fs = require('fs');
50
51
  if (file === ManifestFile) {
51
52
  return;
52
53
  }
53
- var resource = require("".concat(theDirectory, "/").concat(file));
54
+ var resource = require("".concat(theDirectory).concat(file));
54
55
  all.push(resource);
55
56
  });
56
57
  all.forEach(function (apiRequest) {
@@ -1,4 +1,4 @@
1
-
1
+ #!/usr/bin/env node
2
2
  interface iApiResponseLine {
3
3
  "method": "GET" | "PUT" | "POST" | "DELETE",
4
4
  "table": string,
@@ -41,7 +41,7 @@ const fs = require('fs');
41
41
 
42
42
  }
43
43
 
44
- const resource = require(`${theDirectory}/${file}`);
44
+ const resource = require(`${theDirectory}${file}`);
45
45
 
46
46
  all.push(resource);
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carbonorm/carbonreact",
3
- "version": "3.2.8",
3
+ "version": "3.2.10",
4
4
  "browser": "dist/index.umd.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "main": "dist/index.cjs.js",