forked from meteor/meteor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request meteor#11671 from meteor/feature/firefox-mobile-br…
…owser-alias Added `firefoxMobile` as an alias for `firefox` in modern-broswers
- Loading branch information
Showing
4 changed files
with
109 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,9 @@ | |
* `[email protected]` | ||
- Revert `core-js` to v3.15.2 due to issues in legacy build with arrays, [see issue for more details](https://github.com/meteor/meteor/issues/11662) | ||
|
||
* `[email protected]` | ||
- Added `firefoxMobile` as an alias for `firefox` | ||
|
||
## v2.4, 2021-09-15 | ||
|
||
#### Highlights | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
Package.describe({ | ||
name: "modern-browsers", | ||
version: "0.1.6", | ||
summary: "API for defining the boundary between modern and legacy " + | ||
"JavaScript clients", | ||
documentation: "README.md" | ||
name: 'modern-browsers', | ||
version: '0.1.7', | ||
summary: | ||
'API for defining the boundary between modern and legacy ' + | ||
'JavaScript clients', | ||
documentation: 'README.md', | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.use("modules"); | ||
api.mainModule("modern.js", "server"); | ||
api.use('modules'); | ||
api.mainModule('modern.js', 'server'); | ||
}); | ||
|
||
Package.onTest(function(api) { | ||
api.use("ecmascript"); | ||
api.use("tinytest"); | ||
api.use("modern-browsers"); | ||
api.mainModule("modern-tests.js", "server"); | ||
api.use('ecmascript'); | ||
api.use('tinytest'); | ||
api.use('modern-browsers'); | ||
api.mainModule('modern-tests.js', 'server'); | ||
}); |