Skip to content

Commit

Permalink
Add exmaplee code
Browse files Browse the repository at this point in the history
  • Loading branch information
TitusKirch committed Nov 13, 2023
1 parent 7f8b7c0 commit 607b62f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/example/src/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
console.log('Hello app!');
console.log("Hello app!");
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"format:fix": "npx prettier --write \"./**/*.{ts,tsx,vue,css}\"",
"format": "npx prettier --check \"./**/*.{ts,tsx,vue,css}\"",
"format:fix": "npx prettier --write \"./**/*.{js,ts,tsx,vue,css}\"",
"format": "npx prettier --check \"./**/*.{js,ts,tsx,vue,css}\"",
"lint:fix": "eslint --fix apps packages services --max-warnings=0",
"lint": "eslint . --max-warnings=0"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/example/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "@tituskirch/turbo-template-package-example",
"private": true,
"main": "src/index.js",
"scripts": {
"build": "node src/index.js",
"dev": "node src/index.js --dev"
}
}
1 change: 1 addition & 0 deletions packages/example/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("Hello packages!");
2 changes: 1 addition & 1 deletion services/example/src/index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
console.log('Hello service!');
console.log("Hello service!");

0 comments on commit 607b62f

Please sign in to comment.