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
17 changes: 8 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ node_modules
dist
tsc_out
.out
/.changelog
.changelog
.DS_Store
coverage
.cache
Expand All @@ -14,21 +14,20 @@ yarn-error.log
lerna-debug.log

# IDEs and editors
/.idea
.idea
.project
.classpath
.c9/
.c9
*.launch
.settings/
.settings
*.sublime-workspace
.history/*
.history
.vscode

# IDE - VSCode
.vscode/*
.vscode
# For prettier
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# Deploy directory
.public
Expand Down
15 changes: 0 additions & 15 deletions .vscode/launch.json

This file was deleted.

37 changes: 15 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
},
"homepage": "https://github.com/patternfly/patternfly-react#readme",
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@storybook/addon-actions": "^v3.4.11",
"@storybook/addon-info": "^v3.4.11",
"@storybook/addon-knobs": "^v3.4.11",
Expand All @@ -34,9 +33,9 @@
"@storybook/addons": "^3.3.0",
"@storybook/react": "^v3.4.11",
"@storybook/storybook-deployer": "^2.1.0",
"@types/jest": "^23.3.10",
"@types/prop-types": "^15.5.6",
"@types/react": "^16.7.13",
"@types/enzyme": "3.9.0",
"@types/jest": "^24.0.11",
"@types/react": "~16.8.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^9.0.0",
Expand All @@ -50,23 +49,20 @@
"babel-preset-react": "^6.24.1",
"change-case": "^3.0.2",
"codecov": "^3.2.0",
"commitizen": "^3.0.1",
"commitlint-config-cz": "^0.10.1",
"commitizen": "^3.0.7",
"concurrently": "^3.5.1",
"conventional-changelog-cli": "^2.0.5",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"cypress": "^3.1.4",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16.3": "^1.2.0",
"enzyme-to-json": "^3.3.3",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.10.0",
"enzyme-to-json": "3.3.5",
"eslint": "^5.13.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-plugin-patternfly-react": "file:packages/eslint-plugin-patternfly-react",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"husky": "^0.14.3",
"istanbul-api": "1.3.1",
"istanbul-reports": "1.3.0",
"jest": "^23.6.0",
Expand All @@ -79,8 +75,7 @@
"plop": "^2.0.0",
"prettier": "^1.16.1",
"prettier-eslint": "^8.8.1",
"prop-types": "^15.6.1",
"react": "^16.3.0",
"react": "~16.8.4",
"react-dev-utils": "^5.0.0",
"react-dom": "^16.3.0",
"react-scripts": "2.1.3",
Expand All @@ -89,7 +84,7 @@
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"surge": "^0.20.1",
"ts-jest": "^23.10.5"
"ts-jest": "23.10.5"
},
"optionalDependencies": {
"sortabular": "^1.5.1",
Expand All @@ -103,13 +98,12 @@
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "yarn prebuild:pf4 && lerna run --parallel build",
"commit": "git-cz",
"prebuild:pf4": "lerna run --scope='@patternfly/react-styles' build",
"build:docs": "yarn build && lerna run docbuild",
"build:prdocs": "lerna run pr-build --stream",
"build:storybook": "build-storybook -c storybook -o .out",
"clean": "lerna run clean --parallel",
"commit": "git-cz",
"commitmsg": "commitlint -e",
"generate": "yarn plop",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
Expand All @@ -129,15 +123,14 @@
"test:watch": "jest --watchAll",
"uninstall": "find . -name node_modules -type d | xargs rm -rf"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"access": "public"
},
"workspaces": {
"packages": [
"packages/**"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"scripts": {
"build": "yarn build:sass && yarn build:less && yarn build:babel",
"build:babel": "concurrently \"yarn build:babel:cjs\" \"yarn build:babel:esm\"",
"build:babel": "concurrently 'yarn build:babel:cjs' 'yarn build:babel:esm'",
"build:babel:cjs": "cross-env BABEL_ENV=production:cjs babel src --out-dir dist/js",
"build:babel:esm": "cross-env BABEL_ENV=production:esm babel src --out-dir dist/esm",
"build:less": "shx mkdir -p dist/less && shx cp -r less/* dist/less",
Expand All @@ -57,4 +57,4 @@
"react": "^16.3.2",
"react-dom": "^16.3.2"
}
}
}
Loading