-
-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into imports-2018
- Resolve trivial merge conflicts, among them moving from .js to .ts(x) - Migrate additional entries of the deleted `scripts/build-client-js.sh` and `watch-client-js.sh` to `webpack.client.js - Migrate search results page changes, disable "Add to Collection" checkboxes for imports - Drop red heading which explains imports at the bottom of search page for now, it has evolved since and would probably become convoluted - Move "Review recent imports" menu entry into the docs dropdown, the menubar has become very crowded since 2018 Tasks which still have to be done: - Account for the renamed entity types "creator" and "publication" - Use `AuthorAttributes` instead of `CreatorAttributes` - Use `EditionGroupAttributes` instead of `PublicationAttributes` - Signature of `EntityImage` has changed, `backupIcon` is now an object - Signature of `EntityRelationships` has changed and expects more props - Check how much extra massaging is necessary for imports with the recent changes to search indexing!
- Loading branch information
Showing
622 changed files
with
71,730 additions
and
30,881 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
require('@babel/register')({extensions: ['.js', '.jsx', '.ts', '.tsx']}); |
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,57 +1,34 @@ | ||
{ | ||
"plugins": [ | ||
"lodash", | ||
"transform-es2015-modules-commonjs", | ||
"transform-object-rest-spread", | ||
"transform-class-properties", | ||
"array-includes", | ||
"@babel/plugin-proposal-object-rest-spread", | ||
"@babel/plugin-proposal-class-properties", | ||
"@babel/plugin-transform-classes", | ||
"@babel/plugin-transform-runtime", | ||
[ | ||
"transform-runtime", { | ||
"polyfill": false, | ||
"regenerator": true | ||
"babel-plugin-transform-require-ignore", | ||
{ | ||
"extensions": [".scss", ".css"] | ||
} | ||
] | ||
], | ||
"presets": [ | ||
"flow", | ||
"react", | ||
["env", { | ||
"@babel/preset-typescript", | ||
"@babel/preset-react", | ||
["@babel/preset-env", { | ||
"corejs": 3, | ||
"targets": { | ||
"node": "current" | ||
} | ||
}] | ||
], | ||
"env": { | ||
"browser": { | ||
"plugins": [ | ||
"lodash", | ||
"transform-es2015-modules-commonjs", | ||
"transform-object-rest-spread", | ||
"transform-class-properties", | ||
"array-includes", | ||
[ | ||
"transform-runtime", { | ||
"polyfill": false, | ||
"regenerator": true | ||
} | ||
"node": "current", | ||
"browsers": [ | ||
"chrome >= 44", | ||
"edge >= 14", | ||
"firefox >= 40", | ||
"ie >= 11", | ||
"opera >= 43", | ||
"safari >= 9" | ||
] | ||
], | ||
"presets": [ | ||
"flow", | ||
"react", | ||
["env", { | ||
"targets": { | ||
"browsers": [ | ||
"chrome >= 44", | ||
"edge >= 14", | ||
"firefox >= 40", | ||
"ie >= 11", | ||
"opera >= 43", | ||
"safari >= 9" | ||
] | ||
} | ||
}] | ||
] | ||
} | ||
} | ||
}, | ||
"useBuiltIns": "usage" | ||
}] | ||
] | ||
} |
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 |
---|---|---|
|
@@ -5,3 +5,4 @@ nyc | |
coverage | ||
out | ||
!.eslintrc.js | ||
webpack.client.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
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,8 @@ | ||
# all text files follow Unix end-of-line convention | ||
* text eol=lf | ||
|
||
# avoid modifying binary files | ||
*.png binary | ||
*.jpg binary | ||
*.svg binary | ||
*.ico binary |
Oops, something went wrong.