Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Feb 8, 2023
1 parent fb1ce4d commit 6d01bed
Show file tree
Hide file tree
Showing 11 changed files with 109 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"apps/docs": "0.0.0",
"apps/web": "0.0.0",
"packages/ui": "0.0.0",
"packages/tsconfig": "0.0.0",
"packages/eslint-config-custom": "0.0.0"
"apps/docs": "1.0.0",
"apps/web": "1.0.0",
"packages/ui": "1.0.0",
"packages/tsconfig": "1.0.0",
"packages/eslint-config-custom": "1.0.0"
}
25 changes: 25 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

## 1.0.0 (2023-02-08)


### Features

* init turborepo with small modifications ([a825466](https://github.com/MK-IT/monorepo-starter-essentials/commit/a8254668461917a3da17bdd49281dfb5e4675fdd))
* setup linters, Git hooks, and other tooling ([03d428c](https://github.com/MK-IT/monorepo-starter-essentials/commit/03d428c542d2595f2f4b193901cc74cf27bb3d3f))


### Bug Fixes

* apps workspaces package name prefix ([bbee7f0](https://github.com/MK-IT/monorepo-starter-essentials/commit/bbee7f0951876a2aa3dfc1178aaf9e885dd25686))
* eslint extending wrong package ([e47e977](https://github.com/MK-IT/monorepo-starter-essentials/commit/e47e977649d54e9c02937481cd247ba4a095236a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @packages/ui bumped from * to 1.0.0
* devDependencies
* @packages/eslint-config-custom bumped from * to 1.0.0
* @packages/tsconfig bumped from * to 1.0.0
10 changes: 5 additions & 5 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apps/docs",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --port 3001",
Expand All @@ -10,18 +10,18 @@
"test": "jest"
},
"dependencies": {
"@packages/ui": "*",
"@packages/ui": "1.0.0",
"next": "13.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@packages/eslint-config-custom": "*",
"@packages/tsconfig": "*",
"@packages/eslint-config-custom": "1.0.0",
"@packages/tsconfig": "1.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.11.18",
"@types/node": "^18.11.15",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.7",
"eslint": "8.29.0",
Expand Down
25 changes: 25 additions & 0 deletions apps/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

## 1.0.0 (2023-02-08)


### Features

* init turborepo with small modifications ([a825466](https://github.com/MK-IT/monorepo-starter-essentials/commit/a8254668461917a3da17bdd49281dfb5e4675fdd))
* setup linters, Git hooks, and other tooling ([03d428c](https://github.com/MK-IT/monorepo-starter-essentials/commit/03d428c542d2595f2f4b193901cc74cf27bb3d3f))


### Bug Fixes

* apps workspaces package name prefix ([bbee7f0](https://github.com/MK-IT/monorepo-starter-essentials/commit/bbee7f0951876a2aa3dfc1178aaf9e885dd25686))
* eslint extending wrong package ([e47e977](https://github.com/MK-IT/monorepo-starter-essentials/commit/e47e977649d54e9c02937481cd247ba4a095236a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @packages/ui bumped from * to 1.0.0
* devDependencies
* @packages/eslint-config-custom bumped from * to 1.0.0
* @packages/tsconfig bumped from * to 1.0.0
10 changes: 5 additions & 5 deletions apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apps/web",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -10,18 +10,18 @@
"test": "jest"
},
"dependencies": {
"@packages/ui": "*",
"@packages/ui": "1.0.0",
"next": "13.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@packages/eslint-config-custom": "*",
"@packages/tsconfig": "*",
"@packages/eslint-config-custom": "1.0.0",
"@packages/tsconfig": "1.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.11.18",
"@types/node": "^18.11.15",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.7",
"eslint": "8.29.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/eslint-config-custom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 1.0.0 (2023-02-08)


### Features

* init turborepo with small modifications ([a825466](https://github.com/MK-IT/monorepo-starter-essentials/commit/a8254668461917a3da17bdd49281dfb5e4675fdd))
2 changes: 1 addition & 1 deletion packages/eslint-config-custom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@packages/eslint-config-custom",
"version": "0.0.0",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/tsconfig/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 1.0.0 (2023-02-08)


### Features

* init turborepo with small modifications ([a825466](https://github.com/MK-IT/monorepo-starter-essentials/commit/a8254668461917a3da17bdd49281dfb5e4675fdd))
2 changes: 1 addition & 1 deletion packages/tsconfig/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@packages/tsconfig",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"files": [
"base.json",
Expand Down
23 changes: 23 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Changelog

## 1.0.0 (2023-02-08)


### Features

* init turborepo with small modifications ([a825466](https://github.com/MK-IT/monorepo-starter-essentials/commit/a8254668461917a3da17bdd49281dfb5e4675fdd))
* setup linters, Git hooks, and other tooling ([03d428c](https://github.com/MK-IT/monorepo-starter-essentials/commit/03d428c542d2595f2f4b193901cc74cf27bb3d3f))


### Bug Fixes

* eslint not recognizing env variable in script command ([97008d6](https://github.com/MK-IT/monorepo-starter-essentials/commit/97008d621b285b774b2268a3c33156cb5531f436))
* move TIMING eslint param to root package.json ([91a3846](https://github.com/MK-IT/monorepo-starter-essentials/commit/91a38464de892230a075a6a4b41b8e11ea380f98))


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* @packages/eslint-config-custom bumped from * to 1.0.0
* @packages/tsconfig bumped from * to 1.0.0
6 changes: 3 additions & 3 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@packages/ui",
"version": "0.0.0",
"version": "1.0.0",
"main": "./index.tsx",
"types": "./index.tsx",
"license": "MIT",
"scripts": {
"lint": "eslint \"**/*.ts*\""
},
"devDependencies": {
"@packages/eslint-config-custom": "*",
"@packages/tsconfig": "*",
"@packages/eslint-config-custom": "1.0.0",
"@packages/tsconfig": "1.0.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"eslint": "^8.29.0",
Expand Down

0 comments on commit 6d01bed

Please sign in to comment.