Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Update dependencies #948

Merged
merged 3 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 14 additions & 59 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,66 +1,21 @@
# From https://github.com/github/gitignore
# - Node.gitignore
# - Ruby.gitignore
# - Sass.gitignore

*.bridgesupport
*.css.map
*.gem
# local-files
*.log
*.pid
*.pid.lock
*.rbc
*.seed
.dat*
.grunt
.lock-wscript
.node_repl_history
.npm
.nyc_output
.repl_history
.rvmrc
*.tgz
packages/**/package-lock.json

# local folders
.fleet
.idea
.vscode
.sass-cache/
/.bundle/
/.config
/.yardoc/
/_yardoc/
/coverage/
/doc/
/InstalledFiles
/lib/bundler/man/
/pkg/
/rdoc/
/spec/examples.txt
/spec/reports/
/test/tmp/
/test/version_tmp/
/tmp/
/vendor/bundle
build-iPhoneOS/
build-iPhoneSimulator/
build/
build/Release
coverage
jspm_packages
.DS_Store

# generated folders
aggregated-translations
build
generated-themes
lib
lib-cov
logs
node_modules
npm-debug.log*
package-lock.json
pids
props-table
reports
screenshots
target
**/aggregated-translations/*.*
**/__snapshots__/screen
**/__snapshots__/diff
**/__snapshots__/latest
**/__snapshots__/error
errorScreenshots
themeable-variables.json
generated-themes
.idea
.DS_Store
**/__snapshots__/diff
4 changes: 2 additions & 2 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
package-lock=false
legacy-peer-deps=true
package-lock=true
legacy-peer-deps=false
1 change: 0 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ module.exports = (api) => {
];
const plugins = [
'@babel/plugin-transform-object-assign',
'@babel/plugin-proposal-object-rest-spread',
];

return {
Expand Down
5 changes: 5 additions & 0 deletions jest.enzymeSetup.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
// Make Enzyme functions available in all test files without importing
/* eslint-disable import/no-extraneous-dependencies */
/* eslint-disable object-curly-newline */
import Enzyme, { mount, render, shallow } from 'enzyme';
// import { mockIntl, mountWithIntl, renderWithIntl, shallowWithIntl } from 'terra-enzyme-intl';
import Adapter from 'enzyme-adapter-react-16';

Enzyme.configure({ adapter: new Adapter() });

global.shallow = shallow;
global.render = render;
global.mount = mount;

// global.enzyme = { mount, render, shallow };
// global.enzymeIntl = { mockIntl, mountWithIntl, renderWithIntl, shallowWithIntl };
Loading
Loading