@microlink/function 0.3.2 → 0.3.3

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/LICENSE.md +0 -0
  2. package/package.json +14 -12
package/LICENSE.md CHANGED
File without changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@microlink/function",
3
3
  "description": "Write JavaScript functions and run them remotely with Microlink — Puppeteer access, npm packages, and zero infrastructure.",
4
4
  "homepage": "https://function.microlink.io",
5
- "version": "0.3.2",
5
+ "version": "0.3.3",
6
6
  "types": "src/index.d.ts",
7
7
  "exports": {
8
8
  "types": "./src/index.d.ts",
@@ -34,8 +34,8 @@
34
34
  "serverless"
35
35
  ],
36
36
  "dependencies": {
37
- "lz-ts": "~1.1.2",
38
- "@microlink/mql": "0.18.1"
37
+ "@microlink/mql": "0.19.0",
38
+ "lz-ts": "~1.1.2"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@rollup/plugin-commonjs": "latest",
@@ -58,6 +58,15 @@
58
58
  "files": [
59
59
  "src"
60
60
  ],
61
+ "scripts": {
62
+ "build": "rollup -c rollup.config.js --bundleConfigAsCjs",
63
+ "clean:build": "rm -rf dist/index.js",
64
+ "dev": "pnpm run build -- -w",
65
+ "prebuild": "pnpm run clean:build",
66
+ "prepublishOnly": "pnpm run build",
67
+ "pretest": "pnpm run build",
68
+ "test": "ava --verbose && tsd"
69
+ },
61
70
  "license": "MIT",
62
71
  "ava": {
63
72
  "timeout": "1m"
@@ -73,12 +82,5 @@
73
82
  },
74
83
  "directory": "test"
75
84
  },
76
- "scripts": {
77
- "build": "rollup -c rollup.config.js --bundleConfigAsCjs",
78
- "clean:build": "rm -rf dist/index.js",
79
- "dev": "pnpm run build -- -w",
80
- "prebuild": "pnpm run clean:build",
81
- "pretest": "pnpm run build",
82
- "test": "ava --verbose && tsd"
83
- }
84
- }
85
+ "gitHead": "c93fff8082b69c8e76bc159be82daf8a26b419bb"
86
+ }