-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies to support Node 18+ (#482)
* Update some major dependencies, webpack config and proxy management for "Open Test Page button" * Update icon packs * Webpack config changes * Update bootstrap * Update eslint & jest * Update connect-pg-simple * Update css * Remove query-string dependency * jest.setup.js update * Update runtest.yml to use Node v18 * Updating form text (#485) * Update dependencies test (#484) * Updating jest environment and babel configuration * New github config to fix builds * Upgrade lighthouse * Remove nodegit dependency * Address PR feedback * Fix files affected by revert on source branch * Update React * Fix fake data seeder * Remove sass dependency * Fix files affected by revert on source branch * Fix misspellings in the readme (#490) * Fix misspellings in the readme --------- Co-authored-by: Howard Edwards <[email protected]> * Update sequelize * Update gitUpdatedDateToString function arguments * Updating react deps (#502) * Update React * Updating jest environment and babel configuration * New github config to fix builds * Cacheing nodegit and fixing failing tests * update react in package.json * Updating React-Testing-Library and removing acts (default now) * adding text encoder, which is not added to jsdom * updating react testing library dom * Updating jest environment and babel configuration * update react in package.json * adding text encoder, which is not added to jsdom * cleaning up confirmAuth + candidateTests + routes index.js * descendent routing in progress * fixed candidate tests + test reports. TODO: test queue * fixing typo: propotypes --> proptypes * Undoing irrelevant commits * Undoing uneccesary whitespaces * Removing unnecessary imports * cleaning up confirmAuth + candidateTests + routes index.js * descendent routing in progress * undoing irrelevant commits * undoing uneccesary whitespaces * removing unnecessary imports * Update yarn.lock * report fixings * fixing jest test expected * removing unused import * updated runtest.yml * removing resize observer * confirmed test expected is different per machine, reverting * fixing resize-observer * check for null | undefined testplanreports * summarizetestplanversion reverts * Re-enabling test on App.test.jsx * updated testing library * adding yarn lock * yarn prettier * Removing comment --------- Co-authored-by: Howard Edwards <[email protected]> Co-authored-by: Erika Miguel <[email protected]> * Update rest of dependencies 2 (#503) * Upgrade prettier * update babel * Updating babel and prettier correctly * Upgrade ua-parser-js and lighthouse cli * Moving babel deps to dev dependencies * updating prettier config * prettier changes * Update sequelize-cli version (#508) * Update sequelize-cli version * Update dependencies * Updating More Dependencies (#506) * untested changes * fixed storybook * alphabetical * changing to dev deps * Implement fixes for support tables * Upgrade vagrant environment (#492) * Vagrant environment changes * adding memory increase and cron job * Automatically upgrade to Node 18 and fix cron job on Vagrant environment * Adding cores to Vagrant machine * Adding environment variable to differentiate between deployment environments in embed.js * Changing permissions to /vagrant/server folder * separating out upgrade tasks * explicitly adding patch-package to root * removing DEPLOY_ENVIRONMENT variable * remove DEPLOY_ENVIRONMENT from vagrant config * adding ALLOW_FAKE_ROLE env variable to vagrant env * World write rsync permission on server folder on vagrant machine * Document new Vagrant configuration * Remove obviated Ansible Task The directory is now made world-writable every time it is synchronized with the host. --------- Co-authored-by: Mike Pennisi <[email protected]> * Update yarn.lock --------- Co-authored-by: Erika Miguel <[email protected]> Co-authored-by: alflennik <[email protected]> Co-authored-by: Paul Clue <[email protected]> Co-authored-by: Aleena <[email protected]> Co-authored-by: Mike Pennisi <[email protected]>
- Loading branch information
1 parent
eb5894f
commit 76c4924
Showing
105 changed files
with
7,608 additions
and
10,337 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
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,4 +1,6 @@ | ||
{ | ||
"singleQuote": true, | ||
"tabWidth": 4 | ||
"tabWidth": 4, | ||
"arrowParens": "avoid", | ||
"trailingComma": "none" | ||
} |
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
module.exports = { | ||
core: { | ||
builder: 'webpack5', | ||
}, | ||
stories: ['../stories/*.stories.jsx'], | ||
addons: ['@storybook/addon-a11y', '@storybook/addon-controls'] | ||
}; |
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,4 +1,4 @@ | ||
import '../../node_modules/bootstrap/dist/css/bootstrap.css'; | ||
import '../../node_modules/@fortawesome/fontawesome-svg-core/styles.css'; | ||
import '!style-loader!css-loader!sass-loader!../scss/custom.scss'; // using inline webpack loaders for scss | ||
import '../../node_modules/bootstrap/dist/css/bootstrap.css'; | ||
import '../static/index.css'; |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,6 +59,7 @@ | |
.radio-text { | ||
padding-bottom: 10px; | ||
color: #656565; | ||
display: block; | ||
} | ||
|
||
.sr-only { | ||
|
3 changes: 2 additions & 1 deletion
3
client/components/CandidateTests/CandidateModals/ProvideFeedbackModal/index.jsx
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.