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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# General ignores
node_modules
*.log
.changelog

# Package specific
packages/**/dist
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

> **Tags:**
> - :boom: Breaking Change
> - :rocket: New Feature
> - :bug: Bug Fix
> - :memo: Documentation
> - :seedling: Internal

_Note: Gaps between patch versions are faulty, broken or test releases._

<!-- DO NOT MODIFY BELOW THIS COMMENT -->
<!-- insert-new-changelog-here -->
14 changes: 13 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"version": "5.0.0",
"npmClient": "yarn",
"version": "independent",
"npmClientArgs": ["--no-lockfile"],
"changelog": {
"repo": "zendeskgarden/react-components",
"cacheDir": ".changelog",
"labels": {
"PR: Breaking Change :boom:": ":boom: Breaking Change",
"PR: New Feature :rocket:": ":rocket: New Feature",
"PR: Bug Fix :bug:": ":bug: Bug Fix",
"PR: Docs :memo:": ":memo: Documentation",
"PR: Internal :seedling:": ":seedling: Internal"
}
},
"ignoreChanges": ["*.md", "*.spec.js", "**/__snapshots__/**", "styleguide.config.js"],
"command": {
"publish": {
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"prepare": "yarn build",
"start": "utils/scripts/scoped-npm-command.js --script start",
"start:demo": "yarn build:demo && live-server demo",
"tag": "lerna version --conventional-commits",
"tag": "utils/scripts/version.sh",
"test": "yarn test:all --watch",
"test:all": "jest --config=utils/test/jest.config.js"
},
Expand Down Expand Up @@ -61,6 +61,7 @@
"eslint-plugin-react-hooks": "1.6.0",
"fs-extra": "8.0.1",
"fuzzy": "0.1.3",
"get-stdin": "7.0.0",
"gh-pages": "2.0.1",
"github-markdown-css": "3.0.1",
"glob": "7.1.4",
Expand All @@ -76,11 +77,13 @@
"jest-enzyme": "7.0.2",
"jest-styled-components": "7.0.0-2",
"lerna": "3.14.1",
"lerna-changelog": "0.8.2",
"lint-staged": "8.1.7",
"live-server": "1.2.1",
"markdown-loader": "5.0.0",
"markdownlint-cli": "0.16.0",
"mini-css-extract-plugin": "0.6.0",
"node-fetch": "2.6.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"prettier": "1.17.1",
"prettier-package-json": "2.1.0",
Expand Down
1 change: 0 additions & 1 deletion packages/.template/CHANGELOG.md

This file was deleted.

Loading