Skip to content

Commit

Permalink
chore(release): v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
natterstefan-bot committed Feb 27, 2022
1 parent 1e3594a commit 11eace8
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 22 deletions.
28 changes: 22 additions & 6 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"npmClient": "yarn",
"packages": ["packages/*"],
"packages": [
"packages/*"
],
"changelog": {
"ignoreCommitters": ["allcontributors", "dependabot"],
"ignoreCommitters": [
"allcontributors",
"dependabot"
],
"labels": {
"enhancement": ":rocket: New Feature",
"bug": ":bug: Bug Fix"
Expand All @@ -11,15 +16,26 @@
},
"command": {
"version": {
"allowBranch": ["main", "next"]
"allowBranch": [
"main",
"next"
]
},
"publish": {
"allowBranch": ["main", "next"],
"allowBranch": [
"main",
"next"
],
"conventionalCommits": true,
"message": "chore(release): %s"
}
},
"ignoreChanges": ["*.md", "*.txt", "__test__/**", "**/__tests__/**"],
"ignoreChanges": [
"*.md",
"*.txt",
"__test__/**",
"**/__tests__/**"
],
"useWorkspaces": true,
"version": "2.0.0"
"version": "3.0.0"
}
2 changes: 1 addition & 1 deletion packages/eslint-config-ns-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-ns-base",
"version": "2.0.0",
"version": "3.0.0",
"description": "eslint config ready to be used in multiple projects",
"author": "Stefan Natter",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-ns-ts-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-ns-ts-base",
"version": "2.0.0",
"version": "3.0.0",
"description": "eslint typescript config ready to be used in multiple projects",
"author": "Stefan Natter",
"license": "MIT",
Expand Down Expand Up @@ -37,7 +37,7 @@
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint-config-ns-base": "^2.0.0",
"eslint-config-ns-base": "^3.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"typescript": "^4.5.5"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/eslint-config-ns-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-ns-ts",
"version": "2.0.0",
"version": "3.0.0",
"description": "eslint typescript config ready to be used in multiple projects",
"author": "Stefan Natter",
"license": "MIT",
Expand Down Expand Up @@ -39,8 +39,8 @@
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint-config-ns": "^2.0.0",
"eslint-config-ns-ts-base": "^2.0.0",
"eslint-config-ns": "^3.0.0",
"eslint-config-ns-ts-base": "^3.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"typescript": "^4.5.5"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-ns/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-ns",
"version": "2.0.0",
"version": "3.0.0",
"description": "eslint config ready to be used in multiple projects",
"author": "Stefan Natter",
"license": "MIT",
Expand Down Expand Up @@ -41,7 +41,7 @@
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-react": "^7.16.7",
"eslint-config-ns-base": "^2.0.0"
"eslint-config-ns-base": "^3.0.0"
},
"peerDependencies": {
"eslint": "^8.10.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/example-js-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-js-react",
"private": true,
"version": "2.0.0",
"version": "3.0.0",
"description": "Example code for eslint-config-ns",
"engines": {
"node": "^14.17 || ^16.x"
Expand All @@ -19,6 +19,6 @@
"react-dom": "^17.0.2"
},
"devDependencies": {
"eslint-config-ns": "^2.0.0"
"eslint-config-ns": "^3.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/example-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-js",
"private": true,
"version": "2.0.0",
"version": "3.0.0",
"description": "Example code for eslint-config-ns",
"engines": {
"node": "^14.17 || ^16.x"
Expand All @@ -14,6 +14,6 @@
"author": "Stefan Natter",
"license": "MIT",
"devDependencies": {
"eslint-config-ns-base": "^2.0.0"
"eslint-config-ns-base": "^3.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/example-ts-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-ts-react",
"private": true,
"version": "2.0.0",
"version": "3.0.0",
"description": "Example code for eslint-config-ns-ts",
"engines": {
"node": "^14.17 || ^16.x"
Expand All @@ -18,12 +18,12 @@
"react-dom": "^17.0.2"
},
"devDependencies": {
"eslint-config-ns-ts": "^2.0.0",
"@types/enzyme": "^3.10.11",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"eslint-config-ns-ts": "^3.0.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/example-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example-ts",
"private": true,
"version": "2.0.0",
"version": "3.0.0",
"description": "Example code for eslint-config-ns",
"engines": {
"node": "^14.17 || ^16.x"
Expand All @@ -14,7 +14,7 @@
"author": "Stefan Natter",
"license": "MIT",
"devDependencies": {
"eslint-config-ns-ts-base": "^2.0.0",
"eslint-config-ns-ts-base": "^3.0.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
Expand Down

0 comments on commit 11eace8

Please sign in to comment.