Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

possible fix for npm install #541

Merged
merged 3 commits into from
Jan 28, 2022
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
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* eslint-env node */

module.exports = {
plugins: ['@typescript-eslint', 'prettier'],
extends: ['react-app', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended', 'prettier'],
plugins: ['prettier'],
extends: ['react-app', 'plugin:prettier/recommended', 'prettier'],
settings: {
react: {
version: '99.99.99',
Expand Down
300 changes: 150 additions & 150 deletions .yarn/releases/yarn-3.1.0.cjs → .yarn/releases/yarn-3.1.1.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ packageExtensions:
dependencies:
typescript: ~4.1.5

yarnPath: .yarn/releases/yarn-3.1.0.cjs
yarnPath: .yarn/releases/yarn-3.1.1.cjs
72 changes: 36 additions & 36 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,81 +67,81 @@
"!build/demo"
],
"scripts": {
"clean": "rimraf build dist docs \"*.tgz\" && yarn run clean:compile",
"clean": "rimraf build dist docs \"*.tgz\" && npm run clean:compile",
"clean:compile": "rimraf build/src \"build/*.tsbuildinfo\" \"*.tsbuildinfo\" ",
"compile": "tsc -b ./tsconfig.json",
"compile:dev": "tsc -b ./tsconfig.dev.json",
"fix": "yarn run eslint:fix && yarn run prettier:write",
"fix": "npm run eslint:fix && npm run prettier:write",
"prettier:write": "prettier \"*\" \"*/**\" --write",
"prettier": "prettier \"*\" \"*/**\" --check",
"eslint": "eslint src --ext .ts,.tsx",
"eslint:fix": "yarn run eslint --fix",
"eslint:fix": "npm run eslint -- --fix",
"stylelint": "stylelint \"src/**/*.scss\"",
"lint": "yarn run eslint && yarn run prettier && yarn run stylelint",
"docs": "yarn run clean:compile && typedoc --tsconfig tsconfig.dev.json --out ./docs/ src tsd.d.ts",
"lint": "npm run eslint && npm run prettier && npm run stylelint",
"docs": "npm run clean:compile && typedoc --tsconfig tsconfig.dev.json --out ./docs/ src tsd.d.ts",
"test": "jest --passWithNoTests",
"test:watch": "jest --passWithNoTests --watch",
"test:coverage": "jest --passWithNoTests --coverage",
"build:dev": "webpack --mode development --devtool source-map",
"build": "webpack --mode production --devtool source-map",
"dev": "yarn run clean && yarn run compile:dev && yarn run build:dev",
"dev": "npm run clean && npm run compile:dev && npm run build:dev",
"watch": "webpack --mode development --watch --devtool source-map",
"start": "webpack serve --mode development --devtool source-map",
"prepare": "echo 'dummy prepare since prepack has no dev dependencies'",
"prepack": "yarn run clean && yarn run compile && yarn run build",
"cy:compile": "yarn run compile && cd cypress && tsc",
"prepack": "npm run clean && npm run compile && npm run build",
"cy:compile": "npm run compile && cd cypress && tsc",
"cy:clean": "rimraf \"cypress/*.tsbuildinfo\" \"cypress/integration/**/*.+(js|d.ts)\"",
"cy:open": "cypress open",
"cy:start": "cypress open --config baseUrl=http://localhost:8080",
"cy:run": "yarn run cy:compile && cypress run",
"cy:junit": "yarn run cy:compile && cypress run --reporter junit --reporter-options 'mochaFile=junit-results/my-test-output.xml'"
"cy:run": "npm run cy:compile && cypress run",
"cy:junit": "npm run cy:compile && cypress run --reporter junit --reporter-options 'mochaFile=junit-results/my-test-output.xml'"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@types/jest": "^27.0.3",
"@types/lodash": "4.14.177",
"@types/node": "^16.11.8",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@yarnpkg/sdks": "^2.5.1-rc.2",
"@types/jest": "^27.4.0",
"@types/lodash": "4.14.178",
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@yarnpkg/sdks": "^2.6.0-rc.4",
"css-loader": "^6.5.1",
"cypress": "^9.0.0",
"eslint": "^8.2.0",
"cypress": "^9.3.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.4.0",
"jest": "^27.3.1",
"mini-css-extract-plugin": "^2.4.5",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"jest": "^27.4.7",
"mini-css-extract-plugin": "^2.5.3",
"mkdirp": "^1.0.4",
"mocha-junit-reporter": "^2.0.2",
"prettier": "^2.4.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"stylelint": "^13",
"stylelint-config-standard": "^22",
"stylelint-prettier": "^1",
"stylelint-scss": "^3",
"thread-loader": "^3.0.4",
"ts-jest": "^27.0.7",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"typedoc": "^0.22.9",
"typescript": "~4.4",
"typedoc": "^0.22.11",
"typescript": "~4.5",
"url-loader": "^4.1.1",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"@popperjs/core": "^2.11.2",
"@types/d3-color": "^2.0.1",
"@types/d3-dispatch": "^2.0.0",
"@types/d3-format": "^2.0.0",
Expand All @@ -157,11 +157,11 @@
"d3-scale-chromatic": "^2.0.0",
"d3-time": "^2.1.1",
"d3-time-format": "^3.0.0",
"detect-browser": "^5.2.1",
"detect-browser": "^5.3.0",
"fast-deep-equal": "^3.1.3",
"lineupengine": "^2.4.0",
"lodash.get": "^4.4.2",
"reflect-metadata": "^0.1.13"
},
"packageManager": "yarn@3.1.0"
"packageManager": "yarn@3.1.1"
}
Loading