Skip to content

Commit

Permalink
v0.11.3 (#306)
Browse files Browse the repository at this point in the history
Co-authored-by: Airtable <airtable@users.noreply.github.com>

Adds a UMD build to use for browser-targeted builds. This fixes an issue where other apps that use airtable.js as a dependency were bundling code that expects to run in a node environment when building for a browser enviornment.
  • Loading branch information
kevinwilde-at authored Mar 31, 2022
1 parent ce6f426 commit 56e81e6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v0.11.3
* Adds a UMD build to use for browser-targeted builds. This fixes an issue where other apps that
use airtable.js as a dependency were bundling code that expects to run in a node environment when
building for a browser enviornment.

# v0.11.2
* Bump NPM package versions (#276, #281, #293, #296, #297, #298)

Expand Down
2 changes: 1 addition & 1 deletion build/airtable.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ module.exports = objectToQueryParamString;

},{"lodash/isArray":79,"lodash/isNil":84,"lodash/keys":92}],12:[function(require,module,exports){
"use strict";
module.exports = "0.11.2";
module.exports = "0.11.3";

},{}],13:[function(require,module,exports){
"use strict";
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "airtable",
"version": "0.11.2",
"version": "0.11.3",
"license": "MIT",
"homepage": "https://github.com/airtable/airtable.js",
"repository": "git://github.com/airtable/airtable.js.git",
Expand Down
2 changes: 1 addition & 1 deletion test/test_files/airtable.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ module.exports = objectToQueryParamString;

},{"lodash/isArray":79,"lodash/isNil":84,"lodash/keys":92}],12:[function(require,module,exports){
"use strict";
module.exports = "0.11.2";
module.exports = "0.11.3";

},{}],13:[function(require,module,exports){
"use strict";
Expand Down

0 comments on commit 56e81e6

Please sign in to comment.