From 94d05a37caeedd21803c49e5fcc01cf0a825ee6b Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Wed, 20 Jan 2021 00:55:52 +0100 Subject: [PATCH] Repair package.json npx invocation --- packages/syndicatec/examples/typescript/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/syndicatec/examples/typescript/package.json b/packages/syndicatec/examples/typescript/package.json index 698039b..112a285 100644 --- a/packages/syndicatec/examples/typescript/package.json +++ b/packages/syndicatec/examples/typescript/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "prepare": "npm run compile && npm run rollup", - "compile": "../../bin/syndicate-tsc.js", + "compile": "npx syndicate-tsc", "rollup": "npx rollup -c", "clean": "rm -rf lib/ index.js index.js.map" },