Skip to content

Commit 922470e

Browse files
authored
Merge pull request #3 from Zenoo/release-please--branches--test--components--fullstack-typescript-monorepo
2 parents db2e9ee + 50a5f17 commit 922470e

File tree

9 files changed

+27
-10
lines changed

9 files changed

+27
-10
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"1.0.1"}
1+
{".":"1.1.0"}

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [1.1.0](https://github.com/Zenoo/fullstack-typescript-monorepo/compare/fullstack-typescript-monorepo-v1.0.1...fullstack-typescript-monorepo-v1.1.0) (2022-12-19)
4+
5+
6+
### Features
7+
8+
* Structure import ([7c847c0](https://github.com/Zenoo/fullstack-typescript-monorepo/commit/7c847c0c1a0d4600e5be421c6622c4affb4898db))
9+
10+
11+
### Bug Fixes
12+
13+
* Generic REST API for any DB model + Base models created ([caae61e](https://github.com/Zenoo/fullstack-typescript-monorepo/commit/caae61e81c76a9fd7e0bf24c31bf6a82dce2ebd7))
14+
* Heroku build error ([3cc2b8b](https://github.com/Zenoo/fullstack-typescript-monorepo/commit/3cc2b8bb50a7e7518c159b3956a64ab4aa2b8d8a))
15+
* release-please config ([db2e9ee](https://github.com/Zenoo/fullstack-typescript-monorepo/commit/db2e9eed52975430f5d6064bf33a168930b2164c))
16+
* Replaced fetchpaths with includes ([ec67ee1](https://github.com/Zenoo/fullstack-typescript-monorepo/commit/ec67ee1ebf67ed929b57cf84cc997bf1e71ee38b))
17+
* Seed the DB after an install ([5fa41c8](https://github.com/Zenoo/fullstack-typescript-monorepo/commit/5fa41c872c3cd384062b6dbe7e09057d9b41c895))
18+
* Temporary homepage ([d3e8084](https://github.com/Zenoo/fullstack-typescript-monorepo/commit/d3e808460d666e1c8254d3c8c16760c71582044b))
19+
320
## [1.0.1](https://github.com/Zenoo/fullstack-typescript-monorepo/compare/v1.0.0...v1.0.1) (2022-12-18)
421

522

client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fullstack-typescript-monorepo/client",
3-
"version": "0.0.0",
3+
"version": "1.1.0",
44
"private": true,
55
"proxy": "http://localhost:9000",
66
"scripts": {

client/src/utils/Version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const Version = '!0.0.0!'.replace(/!/g, ''); // x-release-please-version
1+
const Version = '!1.1.0!'.replace(/!/g, ''); // x-release-please-version
22

33
export default Version;

core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fullstack-typescript-monorepo/core",
3-
"version": "0.0.0",
3+
"version": "1.1.0",
44
"main": "lib/index.js",
55
"scripts": {
66
"compile": "tsc"

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fullstack-typescript-monorepo",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"private": true,
55
"engines": {
66
"npm": "8.1.2",

prisma/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fullstack-typescript-monorepo/prisma",
3-
"version": "0.0.0",
3+
"version": "1.1.0",
44
"main": "lib/index.js",
55
"scripts": {
66
"compile": "tsc"

server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fullstack-typescript-monorepo/server",
3-
"version": "0.0.0",
3+
"version": "1.1.0",
44
"private": true,
55
"entry": "src/server.js",
66
"engines": {
@@ -15,7 +15,7 @@
1515
"db:seed": "prisma db seed"
1616
},
1717
"prisma": {
18-
"seed" : "ts-node prisma/seed.ts"
18+
"seed": "ts-node prisma/seed.ts"
1919
},
2020
"dependencies": {
2121
"@fullstack-typescript-monorepo/core": "*",

0 commit comments

Comments
 (0)