Skip to content

Commit 46c961c

Browse files
authored
Data Availability (#38)
* integrate EpicService, npm cli v7 lockfile version * add ability to delineate release, provisional availability, alert cards * add products view to availability component, pair down static site data * add generic SidebarFilter component, product title on avail hover * potential safari sticky sidebar handling update * update snapshots, run lib * allow card overrides * revamp build process, bump babel, react-scripts deps * remove table-cell usage from top level page containers * prepare v1.7.0
1 parent 3b9bb87 commit 46c961c

File tree

146 files changed

+41526
-37884
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+41526
-37884
lines changed

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
src/registerServiceWorker.js
22
src/lib_components/components/**/*.d.ts
33
src/lib_components/remoteAssets
4+
src/**/__tests__
5+
src/**/__mocks__
6+
lib/
7+
config/

.eslintrc

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"extends": ["react-app", "airbnb", "plugin:jsx-a11y/recommended"],
3-
"plugins": ["jsx-a11y"],
2+
"extends": ["airbnb", "react-app", "plugin:jsx-a11y/recommended"],
3+
"plugins": ["react", "jsx-a11y"],
44
"parser": "@typescript-eslint/parser",
55
"parserOptions": {
66
"project": "./tsconfig.json",
@@ -18,6 +18,10 @@
1818
"eslint linebreak-style": [0, "error", "windows"],
1919
"import/no-extraneous-dependencies": ["error", {"packageDir": "./"}],
2020
"react/jsx-filename-extension": [2, { "extensions": [".js", ".jsx", ".ts", ".tsx"] }],
21+
"no-use-before-define": "off",
22+
"@typescript-eslint/no-use-before-define": ["warn"],
23+
"no-shadow": "off",
24+
"@typescript-eslint/no-shadow": ["error"],
2125
"import/extensions": [
2226
"error",
2327
"ignorePackages",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ For Windows users the `npm run lib` command may fail with complaint about 'NODE_
229229
230230
## Library Composition
231231
232-
This package was originally onfigured with advice from [this article](https://medium.com/@lokhmakov/best-way-to-create-npm-packages-with-create-react-app-b24dd449c354).
232+
This package was originally configured with advice from [this article](https://medium.com/@lokhmakov/best-way-to-create-npm-packages-with-create-react-app-b24dd449c354).
233233
234234
In summary, it began as a create-react-app app that was ejected. A `babel.config.json` was added with minor configuration and a script to invoke babel to run a library build was added.
235235

babel.config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"plugins": [
88
["@babel/plugin-proposal-class-properties", { "loose": true }],
99
["@babel/plugin-proposal-object-rest-spread", { "loose": true }],
10+
["@babel/plugin-proposal-private-methods", { "loose": true }],
1011
"@babel/plugin-transform-object-assign"
1112
],
1213
"ignore": [

config-overrides.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

config/env.js

Lines changed: 0 additions & 90 deletions
This file was deleted.

config/jest/cssTransform.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

config/jest/fileTransform.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

config/paths.js

Lines changed: 0 additions & 55 deletions
This file was deleted.

config/polyfills.js

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)