Skip to content

Commit

Permalink
Merge pull request #75 from open-rpc/fix/bump-1034
Browse files Browse the repository at this point in the history
Fix/bump 1034
  • Loading branch information
BelfordZ authored Mar 18, 2019
2 parents e85c6da + bb8604c commit bba2d7b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bin/cli.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

const program = require('commander');
const orpcGenerator = require('../src');
const orpcGenerator = require('../build/src').default;
const { parse } = require('@open-rpc/schema-utils-js');

program
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@open-rpc/generator-client",
"private": false,
"version": "1.0.32",
"version": "1.0.34",
"description": "",
"repository": {
"type": "git",
Expand All @@ -12,18 +12,17 @@
"open-rpc-generator-client": "./bin/cli.js"
},
"files": [
"src/*.js",
"bin/*.js",
"templates/",
"build",
".node-version"
],
"scripts": {
"start": "./bin/cli.js",
"test": "jest --coverage",
"build": "tsc",
"build": "tsc && cp -R templates/js/static build/templates/js/static",
"watch:build": "tsc --watch",
"watch:test": "jest --watch",
"publish": "npm publish --access=public"
"publish": "npm run build && npm publish --access=public"
},
"author": "",
"license": "Apache-2.0",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"declaration": true,
"outDir": "./build",
"strict": true,
"esModuleInterop": true
"esModuleInterop": true,
"resolveJsonModule": true
}
}

0 comments on commit bba2d7b

Please sign in to comment.