Skip to content

Commit

Permalink
version package
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-coleman committed Apr 26, 2024
1 parent a5ca9c3 commit 2abd2ab
Show file tree
Hide file tree
Showing 13 changed files with 65 additions and 18 deletions.
5 changes: 0 additions & 5 deletions .changeset/tasty-grapes-eat.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/admin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# @monorepooo/admin

## 1.0.2

### Patch Changes

- Updated dependencies
- Updated dependencies [a5ca9c3]
- @monorepooo/api@1.1.0
- @monorepooo/utils-two@1.0.1
6 changes: 3 additions & 3 deletions packages/admin/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@monorepooo/admin",
"version": "1.0.1",
"version": "1.0.2",
"main": "./dist/index.js",
"license": "MIT",
"dependencies": {
"@monorepooo/api": "1.0.0",
"@monorepooo/api": "1.1.0",
"@monorepooo/utils": "1.0.0",
"@monorepooo/utils-two": "1.0.0"
"@monorepooo/utils-two": "1.0.1"
},
"devDependencies": {
"typescript": "^5.4.5"
Expand Down
7 changes: 7 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @monorepooo/api

## 1.1.0

### Minor Changes

- Add new sayHello to api and call from template
8 changes: 6 additions & 2 deletions packages/api/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import {utils} from "@monorepooo/utils";
import { utils } from "@monorepooo/utils";
export function api() {
return `{api ${utils()}}`
return `{api ${utils()}}`;
}

export function sayHello() {
return "Hello from api package";
}
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@monorepooo/api",
"version": "1.0.0",
"version": "1.1.0",
"main": "./dist/index.js",
"license": "MIT",
"dependencies": {
Expand Down
14 changes: 14 additions & 0 deletions packages/template/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# @monorepooo/template

## 1.1.0

### Minor Changes

- Add new sayHello to api and call from template

### Patch Changes

- Updated dependencies
- @monorepooo/api@1.1.0
- @monorepooo/admin@1.0.2
- @monorepooo/web@1.0.1
2 changes: 2 additions & 0 deletions packages/template/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import { admin } from "@monorepooo/admin";
import { web } from "@monorepooo/web";
import { sayHello } from "@monorepooo/api";
export function template() {
return `(template ${admin()},${web()})`;
}

console.log("\nTemplate v0.1.1");
console.log(sayHello());
console.log("======");
console.log(template());
console.log("======");
8 changes: 4 additions & 4 deletions packages/template/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@monorepooo/template",
"version": "1.0.1",
"version": "1.1.0",
"main": "./dist/index.js",
"license": "MIT",
"dependencies": {
"@monorepooo/admin": "1.0.1",
"@monorepooo/api": "1.0.0",
"@monorepooo/web": "1.0.0",
"@monorepooo/admin": "1.0.2",
"@monorepooo/api": "1.1.0",
"@monorepooo/web": "1.0.1",
"left-pad": "^1.0.0"
},
"devDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/utils-two/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @monorepooo/utils-two

## 1.0.1

### Patch Changes

- a5ca9c3: Change string to include proper package name
2 changes: 1 addition & 1 deletion packages/utils-two/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@monorepooo/utils-two",
"version": "1.0.0",
"version": "1.0.1",
"main": "./dist/index.js",
"license": "MIT",
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @monorepooo/web

## 1.0.1

### Patch Changes

- Updated dependencies
- @monorepooo/api@1.1.0
4 changes: 2 additions & 2 deletions packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@monorepooo/web",
"version": "1.0.0",
"version": "1.0.1",
"main": "./dist/index.js",
"license": "MIT",
"dependencies": {
"@monorepooo/api": "1.0.0",
"@monorepooo/api": "1.1.0",
"@monorepooo/utils": "1.0.0"
},
"scripts": {
Expand Down

0 comments on commit 2abd2ab

Please sign in to comment.