Skip to content

Commit

Permalink
chore: cleanup package
Browse files Browse the repository at this point in the history
  • Loading branch information
CatsMiaow committed Oct 16, 2023
1 parent dfefa22 commit a23a856
Show file tree
Hide file tree
Showing 5 changed files with 3,031 additions and 2,703 deletions.
1 change: 1 addition & 0 deletions apps/sample-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "sample-app",
"version": "0.0.0",
"description": "Sample Application",
"private": true,
"main": "dist/app",
"scripts": {
"test": "jest --detectOpenHandles",
Expand Down
4 changes: 2 additions & 2 deletions apps/sample-app/src/app.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { helloWorld, isGetBar } from './service';

(() => {
console.log('> helloWorld', helloWorld());
console.log('> isGetBar', isGetBar());
console.log('sample-app> helloWorld', helloWorld());
console.log('sample-app> isGetBar', isGetBar());
})();
1 change: 1 addition & 0 deletions apps/sample-nestjs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "sample-nestjs-app",
"version": "0.0.0",
"description": "Sample NestJS Application",
"private": true,
"main": "dist/app",
"scripts": {
"test": "jest --detectOpenHandles",
Expand Down
5 changes: 1 addition & 4 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"npmClient": "npm",
"version": "0.0.0",
"packages": [
"packages/*"
]
"version": "0.0.0"
}
Loading

0 comments on commit a23a856

Please sign in to comment.