Skip to content

Commit

Permalink
fix(writer): copy handlebars templates into the released artifact
Browse files Browse the repository at this point in the history
Signed-off-by: John Kane <john@kanej.me>
  • Loading branch information
kanej committed Jun 12, 2021
1 parent bda47b6 commit 779b958
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"scripts": {
"dev": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/development-server.ts\"",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && cpx ./src/templates/*.handlebars ./lib/templates --clean && oclif-dev manifest && oclif-dev readme",
"prepack": "rm -rf lib && tsc -b && cpx \"./src/templates/*.handlebars\" ./lib/templates --clean && oclif-dev manifest && oclif-dev readme",
"test": "jest --passWithNoTests",
"version": "oclif-dev readme && git add README.md",
"format": "prettier --write \"./src/**/*.{ts,tsx,js,jsx}\"",
Expand Down
3 changes: 3 additions & 0 deletions packages/engine/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Engine

An abstraction for manipulating a dungeon notes repository.
3 changes: 3 additions & 0 deletions packages/types/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Types

Shared types and reducers, used in both the cli and web client.

0 comments on commit 779b958

Please sign in to comment.