Skip to content

Commit ee805eb

Browse files
authored
Merge pull request #169 from particle-iot/feature/sc-121449/use-fetch-in-agent-js
feature/sc-121449/use-fetch-in-agent-js
2 parents 2ec25e0 + 133182b commit ee805eb

15 files changed

+968
-979
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
condition:
2626
equal: ["16.20.0", << parameters.node-version >>]
2727
steps:
28-
- browser-tools/install-browser-tools
28+
- browser-tools/install-browser-tools:
29+
# Workaround for circleCI automatically targeting unstalbe build https://github.com/CircleCI-Public/browser-tools-orb/issues/90
30+
chrome-version: 116.0.5845.96 # TODO: remove when chromedriver downloads are fixed
2931
- run:
3032
name: Run tests with browser
3133
command: npm run test:browser
File renamed without changes.
File renamed without changes.

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
5. Create a release on GitHub with the notes from the `CHANGELOG.md`
1010
6. Point your project to the new version `npm install particle-api-js@latest`
1111

12-
- After updating major version, update the installation instructions in the [docs](https://github.com/particle-iot/docs/blob/master/src/content/reference/SDKs/javascript.md)
12+
- After updating major version, update the installation instructions in the [docs](https://github.com/particle-iot/docs/blob/master/src/content/reference/cloud-apis/javascript.md)

dist/particle.min.js

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

dist/particle.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fs.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// In Node, exports the fs module. In the browser, exports undefined due to "./fs": false entry in package.json
2+
module.exports = require('fs');

0 commit comments

Comments
 (0)