Skip to content

Commit

Permalink
🐛 Path fix for generated ts (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
no2chem authored Mar 27, 2019
1 parent 7eeef5b commit 1fe2879
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@rainblock/protocol",
"version": "1.0.1",
"version": "1.0.2",
"description": "Protocol Buffer Definitions for Rainblock",
"main": "generated/index.js",
"types": "generated/index.d.ts",
"main": "generated/ts/index.js",
"types": "generated/ts/index.d.ts",
"scripts": {
"preinstall": "mkdir -p prototool;curl -sSL https://github.com/uber/prototool/releases/download/v1.3.0/prototool-$(uname -s)-$(uname -m).tar.gz | tar -C prototool --strip-components 1 -xz",
"format": "prototool/bin/prototool all src",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"rootDir": "ts",
"outDir": "generated"
"outDir": "generated/ts"
},
"include": [
"ts/*.ts"
Expand Down

0 comments on commit 1fe2879

Please sign in to comment.