Skip to content
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
2 changes: 1 addition & 1 deletion __tests__/index.test.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const React = require('react');
const { fireEvent, render } = require('@testing-library/react');
const React = require('react');

const { Variable, VARIABLE_REGEXP } = require('../index');

Expand Down
5 changes: 3 additions & 2 deletions index.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
const React = require('react');
const classNames = require('classnames');
const PropTypes = require('prop-types');
const VariablesContext = require('./contexts/Variables');
const React = require('react');

const OauthContext = require('./contexts/Oauth');
const SelectedAppContext = require('./contexts/SelectedApp');
const VariablesContext = require('./contexts/Variables');

class Variable extends React.Component {
constructor(props) {
Expand Down
168 changes: 52 additions & 116 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@readme/eslint-config": "^9.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@readme/eslint-config": "^10.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"babel-jest": "^28.0.3",
"babel-loader": "^8.2.4",
"babel-polyfill": "^6.26.0",
"eslint": "^8.18.0",
"eslint": "^8.22.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"terser-webpack-plugin": "^5.3.3",
"terser-webpack-plugin": "^5.3.5",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
Expand Down
Loading