Skip to content

Commit

Permalink
Fix templates
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepyfran committed Jul 28, 2024
1 parent 189fa0b commit 65204f9
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 14 deletions.
22 changes: 15 additions & 7 deletions tools/plop-templates/infrastructure/template/package.json.hbs
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{ "name": "@echo/infrastructure-{{dashCase name}}", "private": true, "version":
"1.0.0", "description": "Contains the
{{properCase name}}
related infrastructure", "main": "index.js", "scripts": { "lint": "eslint .
--ext ts,tsx --report-unused-disable-directives --max-warnings 0", "typecheck":
"tsc --noEmit" }, "dependencies": { "@echo/core-types": "^1.0.0", "effect":
"^3.5.8" } }
{
"name": "@echo/infrastructure-{{dashCase name}}",
"private": true,
"version": "1.0.0",
"description": "Contains the {{properCase name}} related infrastructure",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@echo/core-types": "^1.0.0",
"effect": "^3.2.8"
}
}
22 changes: 15 additions & 7 deletions tools/plop-templates/services/template/package.json.hbs
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{ "name": "@echo/services-{{dashCase name}}", "private": true, "version":
"1.0.0", "description": "Contains the implementation for the
{{properCase name}}
service", "main": "index.js", "scripts": { "lint": "eslint . --ext ts,tsx
--report-unused-disable-directives --max-warnings 0", "typecheck": "tsc
--noEmit" }, "dependencies": { "@echo/core-types": "^1.0.0", "effect": "^3.5.8"
} }
{
"name": "@echo/services-{{dashCase name}}",
"private": true,
"version": "1.0.0",
"description": "Contains the implementation for the {{properCase name}} service",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@echo/core-types": "^1.0.0",
"effect": "^3.2.8"
}
}

0 comments on commit 65204f9

Please sign in to comment.