forked from openedx/frontend-app-communications
-
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.
feat(olmo): add cdn and css variables compatibility (#3)
* fix: update modal to modaldialog * chore: update peer dependencies to alpha and testing setup * feat: update css variables * style: fix eslint rules * build: use shared browserslist configuration
- Loading branch information
Showing
32 changed files
with
22,221 additions
and
37,650 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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
const { createConfig } = require('@edx/frontend-build'); | ||
|
||
module.exports = createConfig('eslint'); | ||
module.exports = createConfig('eslint', { | ||
rules: { | ||
'react/function-component-definition': 'off', | ||
}, | ||
}); |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,18 +7,17 @@ | |
"url": "git+https://github.com/edx/frontend-app-communications.git" | ||
}, | ||
"browserslist": [ | ||
"last 2 versions", | ||
"ie 11" | ||
"extends @edx/browserslist-config" | ||
], | ||
"scripts": { | ||
"build": "fedx-scripts webpack", | ||
"i18n_extract": "BABEL_ENV=i18n fedx-scripts babel src --quiet > /dev/null", | ||
"is-es5": "es-check es5 ./dist/*.js", | ||
"lint": "fedx-scripts eslint --ext .js --ext .jsx .", | ||
"lint:fix": "fedx-scripts eslint --fix --ext .js --ext .jsx .", | ||
"snapshot": "fedx-scripts jest --updateSnapshot", | ||
"start": "fedx-scripts webpack-dev-server --progress", | ||
"test": "TZ=UTC fedx-scripts jest --coverage --passWithNoTests" | ||
"test": "TZ=UTC fedx-scripts jest --coverage --passWithNoTests", | ||
"replace-variables": "paragon replace-variables -p src -t usage" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
|
@@ -36,10 +35,10 @@ | |
}, | ||
"dependencies": { | ||
"@edx/brand": "npm:@edx/[email protected]", | ||
"@edx/frontend-component-footer": "11.2.1", | ||
"@edx/frontend-component-header": "3.2.1", | ||
"@edx/frontend-platform": "2.6.2", | ||
"@edx/paragon": "19.25.3", | ||
"@edx/frontend-component-footer": "npm:@edunext/[email protected]", | ||
"@edx/frontend-component-header": "npm:@edunext/[email protected]", | ||
"@edx/frontend-platform": "npm:@edunext/[email protected]", | ||
"@edx/paragon": "22.0.0-alpha.13", | ||
"@edx/tinymce-language-selector": "1.1.0", | ||
"@fortawesome/fontawesome-svg-core": "1.2.36", | ||
"@fortawesome/free-brands-svg-icons": "5.15.4", | ||
|
@@ -63,17 +62,18 @@ | |
"tinymce": "5.10.5" | ||
}, | ||
"devDependencies": { | ||
"@edx/frontend-build": "9.2.2", | ||
"@edx/browserslist-config": "^1.2.0", | ||
"@edx/frontend-build": "github:edunext/frontend-build#ednx-release/css-variables", | ||
"@edx/reactifex": "^2.1.1", | ||
"@testing-library/jest-dom": "5.16.5", | ||
"@testing-library/react": "12.1.5", | ||
"axios-mock-adapter": "1.21.2", | ||
"codecov": "3.8.3", | ||
"es-check": "6.2.1", | ||
"glob": "7.2.3", | ||
"husky": "7.0.4", | ||
"jest": "27.5.1", | ||
"prettier": "2.7.1", | ||
"reactifex": "1.1.1", | ||
"rosie": "2.1.0" | ||
} | ||
} | ||
} |
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
1 change: 1 addition & 0 deletions
1
src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/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 |
---|---|---|
@@ -1 +1,2 @@ | ||
// eslint-disable-next-line no-restricted-exports | ||
export { default } from './BulkEmailRecipient'; |
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 +1,2 @@ | ||
// eslint-disable-next-line no-restricted-exports | ||
export { default } from './BulkEmailForm'; |
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
Oops, something went wrong.