- 13 Jan, 2020 8 commits
-
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
Bumps [@babel/preset-env](https://github.com/babel/babel) from 7.7.7 to 7.8.2. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.7.7...v7.8.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
-
dependabot-preview[bot] authored
Bumps [@babel/preset-react](https://github.com/babel/babel) from 7.7.4 to 7.8.0. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.7.4...v7.8.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [@babel/core](https://github.com/babel/babel) from 7.7.7 to 7.8.0. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) - [Commits](https://github.com/babel/babel/compare/v7.7.7...v7.8.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
dependabot-preview[bot] authored
Bumps [aws-sdk](https://github.com/aws/aws-sdk-js) from 2.597.0 to 2.601.0. - [Release notes](https://github.com/aws/aws-sdk-js/releases) - [Changelog](https://github.com/aws/aws-sdk-js/blob/master/CHANGELOG.md) - [Commits](https://github.com/aws/aws-sdk-js/compare/v2.597.0...v2.601.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
-
- 10 Jan, 2020 9 commits
-
-
Robert Knight authored
Hoist CommonJS imports to top of file
-
Robert Knight authored
In preparation for conversion to ES modules, hoist some remaining non-top level `require` calls to the top level of the file.
-
Robert Knight authored
Normalize module imports to an ES module-friendly format
-
Robert Knight authored
In preparation for conversion to ES imports, hoist Node/CommonJS imports to the top level of the module.
-
Robert Knight authored
When converting to ES imports, store modules will default-export an object rather than a set of named exports. Using destructuring here confuses the conversion script.
-
Robert Knight authored
In preparation for conversion to ES imports, hoist the Node/CommonJS imports to the top level of the module.
-
Robert Knight authored
This will avoid an issue with the export named `default` when the majority of imports are converted in the next commit.
-
Robert Knight authored
The transform-async-to-promises Babel plugin could end up inserting helper code between the `@ngInject` comment and the associated function, breaking the functionality of the angularjs-annotate Babel plugin. Work around this by adding the `$inject` property to the function manually instead of relying on the angularjs-annotate plugin to do it. This issue only showed up locally when testing out a change to convert the module's imports to ES module syntax.
-
Robert Knight authored
Normalize several require statements into a form that can be handled more easily by an automated tool to convert them to ES modules.
-
- 09 Jan, 2020 8 commits
-
-
Lyza Gardner authored
Establish `AnnotationOmega` component and add header and quote to it
-
Lyza Danger Gardner authored
-
Lyza Danger Gardner authored
-
Lyza Danger Gardner authored
-
Lyza Danger Gardner authored
-
Robert Knight authored
Modify a mocking idiom that doesn't work with ES modules
-
Robert Knight authored
We have an idiom in many tests where we import the "default export" from a module and then access the `$imports` property on that function/class/object in order to mock or unmock imports. For example: ``` const Widget = require('../widget'); beforeEach(() => { Widget.$imports.$mock(...); }); afterEach(() => { Widget.$imports.$restore(); }); ``` This won't work when the module under test is converted to an ES module because the `$imports` object will become a separate export from the module rather than a property of the default export.
-
Lyza Gardner authored
Move `delete` and `flag` logic into `AnnotationActionBar` sub-component
-
- 08 Jan, 2020 10 commits
-
-
Lyza Danger Gardner authored
Move the (straightforward) flag and delete logic into the AnnotationActionBar component, near to where the UI interaction takes place to lessen complexity of `Annotation`
-
Lyza Gardner authored
Add `isHighlight` util function to `annotation-metadata`
-
Lyza Danger Gardner authored
-
Robert Knight authored
Bump sinon from 8.0.1 to 8.0.2
-
Robert Knight authored
Bump redux from 4.0.4 to 4.0.5
-
Robert Knight authored
Bump terser from 4.4.3 to 4.5.1
-
Robert Knight authored
Bump fetch-mock from 8.3.0 to 8.3.1
-
Robert Knight authored
Bump sass from 1.23.7 to 1.24.2
-
Robert Knight authored
Bump mocha from 6.2.2 to 7.0.0
-
Robert Knight authored
Bump commander from 4.0.1 to 4.1.0
-
- 07 Jan, 2020 1 commit
-
-
Lyza Danger Gardner authored
- Add `waitFor` util for easier async testing
-
- 06 Jan, 2020 4 commits
-
-
Lyza Gardner authored
Make Annotation sub-components compute their own privacy
-
Lyza Danger Gardner authored
-
Lyza Danger Gardner authored
Stop passing result of `Annotation.state.isPrivate` through `AnnotationActionBar` to `AnnotationShareControl` but instead have `AnnotationShareControl` compute privacy itself.
-
Lyza Danger Gardner authored
Stop passing value of `Annotation.state.isPrivate()` through `AnnotationHeader` all the way to `AnnotationShareInfo` and instead compute that within `AnnotationShareInfo` itself.
-