forked from aws-amplify/amplify-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modularization es6 (aws-amplify#4007)
* Build ES6 Modules along with CJS Modules * Upgrade Typescript to 3.5 * Upgrade Webpack to 4 * Upgrade Jest to 24 [Delivers #168385455] * Removing unused variable from build scripts * Fix signout component being undefined * Fix PR comments * Apply Prettier formatting * Merge branch 'master' of github.com:aws-amplify/amplify-js into modularization-merge * Fix tests that were failing after merge from master * Revert docs and other directories impacted by prettier * Update repository and homepage urls for all packages * Add diagnostic information to build script in event of failures * Revert formatter command as library now used Prettier with pre-commit hook * Adding unit test for pubsub desconnection issue * Fixing websocket disconnect issue on MqttProvider * Update stale.yml * fix: lerna linking for unstable and beta * fix(amazon-cognito-identity-js): linting config (aws-amplify#4097) * partially resolves linting issues in cognito sdk * removes no-cap lint change * using prettier to extend eslint in cognito sdk * removing newline * using airbnb lint config as well as prettier * Fix failing pubsub tests because of jest upgrade * Fix issue SignOut component being undefined * Apply suggestions from code review Co-Authored-By: Manuel Iglesias <[email protected]> * Made mock window worker in angular tests more explicit * Fix failing pubsub tests because of jest upgrade * fix(@aws-amplify/core): removed unused variables (aws-amplify#3926) * Added link to docs for local development to CONTRIBUTING (aws-amplify#3990) * disabled autocomplete when resetting password for new password field * added local development resources to contributing * Fixed typo (aws-amplify#4156) * disabled autocomplete when resetting password for new password field * added local development resources to contributing * fixed typo in CONTRIBUTING doc, aws-amplify#3990 * fix(@aws-amplify/api) Adding x-amz-user-agent for AppSync calls * Adding x-amz-user-agent for appsync calls * Fixing unit test * chore(release): Publish [ci skip] - [email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] * Publish - [email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] * chore(release): Publish [ci skip] - [email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] - @aws-amplify/[email protected] * fix(aws-amplify#4001) (aws-amplify#4131) * fix picker parent style (aws-amplify#4135) * Reduce threads to 1 while running jest tests as Circle CI constantly running out of memory * Remove unnecessary async/awaits in pubsub tests * Add Credentials mock explicitly on two tests that are failing only in circle ci * Move spyon in beforeEach
- Loading branch information
1 parent
10d7470
commit 5c20630
Showing
114 changed files
with
2,429 additions
and
2,168 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
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
'use strict'; | ||
|
||
const build = require('../../scripts/build'); | ||
|
||
build(process.argv[2]); |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
'use strict'; | ||
|
||
module.exports = require('./lib-esm/index.js'); |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
'use strict'; | ||
|
||
if (process.env.NODE_ENV === 'production') { | ||
module.exports = require('./dist/aws-amplify-analytics.min.js'); | ||
} else { | ||
module.exports = require('./dist/aws-amplify-analytics.js'); | ||
} |
Oops, something went wrong.