apify-client 2.23.2-beta.1 → 2.23.2-beta.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.
- package/dist/bundle.js +805 -848
- package/dist/bundle.js.map +1 -1
- package/package.json +17 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-client",
|
|
3
|
-
"version": "2.23.2-beta.
|
|
3
|
+
"version": "2.23.2-beta.2",
|
|
4
4
|
"description": "Apify API client for JavaScript",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -48,21 +48,6 @@
|
|
|
48
48
|
"dist",
|
|
49
49
|
"!dist/*.tsbuildinfo"
|
|
50
50
|
],
|
|
51
|
-
"scripts": {
|
|
52
|
-
"build": "npm run clean && npm run build:node && npm run build:browser",
|
|
53
|
-
"postbuild": "gen-esm-wrapper dist/index.js dist/index.mjs",
|
|
54
|
-
"prepublishOnly": "(test $CI || (echo \"Publishing is reserved to CI!\"; exit 1))",
|
|
55
|
-
"clean": "rimraf dist",
|
|
56
|
-
"test": "npm run build && vitest run",
|
|
57
|
-
"test:bundling": "npm run build && npm --prefix=./test/bundling run bundle:all",
|
|
58
|
-
"lint": "eslint",
|
|
59
|
-
"lint:fix": "eslint --fix",
|
|
60
|
-
"tsc-check-tests": "tsc --noEmit --project test/tsconfig.json",
|
|
61
|
-
"format": "prettier --write .",
|
|
62
|
-
"format:check": "prettier --check .",
|
|
63
|
-
"build:node": "tsc",
|
|
64
|
-
"build:browser": "rsbuild build"
|
|
65
|
-
},
|
|
66
51
|
"dependencies": {
|
|
67
52
|
"@apify/consts": "^2.50.0",
|
|
68
53
|
"@apify/log": "^2.2.6",
|
|
@@ -110,5 +95,19 @@
|
|
|
110
95
|
"webpack": "^5.105.2",
|
|
111
96
|
"webpack-cli": "^7.0.0"
|
|
112
97
|
},
|
|
113
|
-
"
|
|
114
|
-
|
|
98
|
+
"scripts": {
|
|
99
|
+
"build": "pnpm clean && pnpm build:node && pnpm build:browser",
|
|
100
|
+
"postbuild": "gen-esm-wrapper dist/index.js dist/index.mjs",
|
|
101
|
+
"clean": "rimraf dist",
|
|
102
|
+
"test": "pnpm build && vitest run",
|
|
103
|
+
"test:bundling": "pnpm build && pnpm --prefix=./test/bundling run bundle:all",
|
|
104
|
+
"lint": "eslint",
|
|
105
|
+
"lint:fix": "eslint --fix",
|
|
106
|
+
"tsc-check-tests": "tsc --noEmit --project test/tsconfig.json",
|
|
107
|
+
"format": "prettier --write .",
|
|
108
|
+
"format:check": "prettier --check .",
|
|
109
|
+
"build:node": "tsc",
|
|
110
|
+
"build:browser": "rsbuild build",
|
|
111
|
+
"preinstall": "npx only-allow pnpm"
|
|
112
|
+
}
|
|
113
|
+
}
|