Skip to content
This repository was archived by the owner on Aug 21, 2023. It is now read-only.

Commit c0b00b7

Browse files
authored
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
1 parent 268010a commit c0b00b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
],
2525
"repository": {
2626
"type": "git",
27-
"url": "https://github.com/aws/aws-amplify.git"
27+
"url": "https://github.com/aws-amplify/amplify-js.git"
2828
},
2929
"license": "SEE LICENSE IN LICENSE.txt",
3030
"licenses": [
@@ -50,7 +50,7 @@
5050
"doc": "jsdoc src -d docs",
5151
"lint": "eslint src",
5252
"lint2": "eslint enhance-rn.js",
53-
"test": "jest --passWithNoTests",
53+
"test": "jest -w 1 --passWithNoTests",
5454
"format": "echo \"Not implemented\""
5555
},
5656
"main": "lib/index.js",

0 commit comments

Comments
 (0)