@lowdefy/operators-mql 4.7.2 → 5.0.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/dist/types.js +7 -5
  2. package/package.json +8 -7
package/dist/types.js CHANGED
@@ -12,11 +12,13 @@
12
12
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
13
  See the License for the specific language governing permissions and
14
14
  limitations under the License.
15
- */ import * as client from './operatorsClient.js';
16
- import * as server from './operatorsServer.js';
17
- export default {
15
+ */ export default {
18
16
  operators: {
19
- client: Object.keys(client),
20
- server: Object.keys(server)
17
+ client: [
18
+ '_mql'
19
+ ],
20
+ server: [
21
+ '_mql'
22
+ ]
21
23
  }
22
24
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowdefy/operators-mql",
3
- "version": "4.7.2",
3
+ "version": "5.0.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "",
6
6
  "homepage": "https://lowdefy.com",
@@ -37,14 +37,15 @@
37
37
  "dist/*"
38
38
  ],
39
39
  "dependencies": {
40
- "@lowdefy/helpers": "4.7.2",
41
- "@lowdefy/operators": "4.7.2",
40
+ "@lowdefy/helpers": "5.0.0",
41
+ "@lowdefy/operators": "5.0.0",
42
42
  "mingo": "6.4.9"
43
43
  },
44
44
  "devDependencies": {
45
- "@swc/cli": "0.1.63",
46
- "@swc/core": "1.3.99",
47
- "@swc/jest": "0.2.29",
45
+ "@lowdefy/node-utils": "5.0.0",
46
+ "@swc/cli": "0.8.0",
47
+ "@swc/core": "1.15.18",
48
+ "@swc/jest": "0.2.39",
48
49
  "jest": "28.1.3",
49
50
  "jest-environment-jsdom": "28.1.3"
50
51
  },
@@ -52,7 +53,7 @@
52
53
  "access": "public"
53
54
  },
54
55
  "scripts": {
55
- "build": "swc src --out-dir dist --config-file ../../../../.swcrc --delete-dir-on-start --copy-files",
56
+ "build": "swc src --out-dir dist --config-file ../../../../.swcrc --cli-config-file ../../../../.swc-cli.json --copy-files",
56
57
  "clean": "rm -rf dist",
57
58
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
58
59
  }