Skip to content

Commit 8d4d471

Browse files
committed
fixes
1 parent 57985d2 commit 8d4d471

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

.github/workflows/deploy-botasaurus-controls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install dependencies and build
2929
working-directory: botasaurus-controls
3030
run: |
31-
npm i --legacy-peer-deps
31+
npm i
3232
npm run upload
3333
env:
3434
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/deploy-botasaurus-desktop-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install dependencies and build
2929
working-directory: js/botasaurus-desktop-api
3030
run: |
31-
npm i --legacy-peer-deps
31+
npm i
3232
npm run upload
3333
env:
3434
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/deploy-botasaurus-js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install dependencies and build
2929
working-directory: js/botasaurus-js
3030
run: |
31-
npm i --legacy-peer-deps
31+
npm i
3232
npm run upload
3333
env:
3434
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/update-botasaurus-desktop-api-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install dependencies and build
2929
working-directory: js/botasaurus-desktop-api/botasaurus-desktop-api-docs
3030
run: |
31-
npm i --legacy-peer-deps
31+
npm i
3232
npm run build
3333
3434
- name: Get built asset names

js/botasaurus-desktop-api/increment_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def main():
4444

4545
current_version = data["version"]
4646
new_version = increment_minor_version(current_version)
47-
data["version"] = new_version
47+
# data["version"] = new_version
4848
data["exports"] = {
4949
".": "./dist/index.js",
5050
**get_exports(),
@@ -58,7 +58,7 @@ def main():
5858

5959
with open(package_json_path, "w") as file:
6060
json.dump(data, file, indent=2)
61-
61+
os.system(f"npm version {new_version}")
6262
print(f"Version incremented from {current_version} to {new_version}")
6363

6464

js/botasaurus-desktop-api/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/botasaurus-desktop-api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "botasaurus-desktop-api",
3-
"version": "4.1.59",
3+
"version": "4.1.60",
44
"description": "The Botasaurus Desktop API Client provides programmatic access to Botasaurus Desktop scrapers with a developer-friendly API.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -42,7 +42,7 @@
4242
"build-dev": "nodemon --watch \"src/**/*.ts\" --exec \"npm run build-mv\"",
4343
"clean": "rimraf dist tsconfig.tsbuildinfo",
4444
"update": "npm update botasaurus",
45-
"clean-install": "rm -rf dist/ node_modules/ package-lock.json yarn.lock .next/* && npm install --legacy-peer-deps",
45+
"clean-install": "rm -rf dist/ node_modules/ package-lock.json yarn.lock .next/* && npm install",
4646
"prepublishOnly": "npm run build",
4747
"local-proxy": "node ./dist/run_locally.js",
4848
"mtest": "node test/test.mjs",
@@ -67,4 +67,4 @@
6767
"dependencies": {
6868
"axios": "^1.9.0"
6969
}
70-
}
70+
}

js/botasaurus-js/increment_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def main():
4444

4545
current_version = data["version"]
4646
new_version = increment_minor_version(current_version)
47-
data["version"] = new_version
47+
# data["version"] = new_version
4848
data["exports"] = {
4949
".": "./dist/index.js",
5050
**get_exports(),
@@ -58,7 +58,7 @@ def main():
5858

5959
with open(package_json_path, "w") as file:
6060
json.dump(data, file, indent=2)
61-
61+
os.system(f"npm version {new_version}")
6262
print(f"Version incremented from {current_version} to {new_version}")
6363

6464

js/botasaurus-js/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/botasaurus-js/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "botasaurus",
3-
"version": "4.0.110",
3+
"version": "4.0.111",
44
"description": "controls adder for botasaurus.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -165,4 +165,4 @@
165165
"rebrowser-playwright-core": "^1.49.1",
166166
"tslib": "^2.6.2"
167167
}
168-
}
168+
}

0 commit comments

Comments
 (0)