From 992060b90880f33522466f80485d8b90358768f8 Mon Sep 17 00:00:00 2001 From: SteveSandersonMS Date: Mon, 2 May 2016 12:47:58 -0700 Subject: [PATCH] Further attempt to make the build pass --- src/Microsoft.AspNet.AngularServices/npm/package.json | 2 +- src/Microsoft.AspNet.ReactServices/npm/redux-typed/package.json | 2 +- .../npm/aspnet-prerendering/package.json | 2 +- .../npm/aspnet-webpack-react/package.json | 2 +- .../npm/aspnet-webpack/package.json | 2 +- src/Microsoft.AspNet.SpaServices/npm/domain-task/package.json | 2 +- templates/yeoman/package.json | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Microsoft.AspNet.AngularServices/npm/package.json b/src/Microsoft.AspNet.AngularServices/npm/package.json index de2cc09..471f8c2 100644 --- a/src/Microsoft.AspNet.AngularServices/npm/package.json +++ b/src/Microsoft.AspNet.AngularServices/npm/package.json @@ -5,7 +5,7 @@ "main": "./dist/Exports", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "prepublish": "tsd install && node_modules/.bin/tsc && node build.js" + "prepublish": "tsd install && tsc && node build.js" }, "repository": { "type": "git", diff --git a/src/Microsoft.AspNet.ReactServices/npm/redux-typed/package.json b/src/Microsoft.AspNet.ReactServices/npm/redux-typed/package.json index 3db0045..1baee3a 100644 --- a/src/Microsoft.AspNet.ReactServices/npm/redux-typed/package.json +++ b/src/Microsoft.AspNet.ReactServices/npm/redux-typed/package.json @@ -5,7 +5,7 @@ "main": "main.js", "typings": "main.d.ts", "scripts": { - "prepublish": "tsd update && node_modules/.bin/tsc && echo 'Finished building NPM package \"redux-typed\"'", + "prepublish": "tsd update && tsc && echo 'Finished building NPM package \"redux-typed\"'", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Microsoft", diff --git a/src/Microsoft.AspNet.SpaServices/npm/aspnet-prerendering/package.json b/src/Microsoft.AspNet.SpaServices/npm/aspnet-prerendering/package.json index dd8dffd..7edc0b3 100644 --- a/src/Microsoft.AspNet.SpaServices/npm/aspnet-prerendering/package.json +++ b/src/Microsoft.AspNet.SpaServices/npm/aspnet-prerendering/package.json @@ -4,7 +4,7 @@ "description": "Helpers for server-side rendering of JavaScript applications in ASP.NET projects. Works in conjunction with the Microsoft.AspNet.SpaServices NuGet package.", "main": "index.js", "scripts": { - "prepublish": "tsd update && node_modules/.bin/tsc && echo 'Finished building NPM package \"aspnet-prerendering\"'", + "prepublish": "tsd update && tsc && echo 'Finished building NPM package \"aspnet-prerendering\"'", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Microsoft", diff --git a/src/Microsoft.AspNet.SpaServices/npm/aspnet-webpack-react/package.json b/src/Microsoft.AspNet.SpaServices/npm/aspnet-webpack-react/package.json index b0883b4..3c4c94e 100644 --- a/src/Microsoft.AspNet.SpaServices/npm/aspnet-webpack-react/package.json +++ b/src/Microsoft.AspNet.SpaServices/npm/aspnet-webpack-react/package.json @@ -4,7 +4,7 @@ "description": "Helpers for using Webpack with React in ASP.NET projects. Works in conjunction with the Microsoft.AspNet.SpaServices NuGet package.", "main": "index.js", "scripts": { - "prepublish": "tsd update && node_modules/.bin/tsc && echo 'Finished building NPM package \"aspnet-webpack-react\"'", + "prepublish": "tsd update && tsc && echo 'Finished building NPM package \"aspnet-webpack-react\"'", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Microsoft", diff --git a/src/Microsoft.AspNet.SpaServices/npm/aspnet-webpack/package.json b/src/Microsoft.AspNet.SpaServices/npm/aspnet-webpack/package.json index 4414b18..6a8a527 100644 --- a/src/Microsoft.AspNet.SpaServices/npm/aspnet-webpack/package.json +++ b/src/Microsoft.AspNet.SpaServices/npm/aspnet-webpack/package.json @@ -4,7 +4,7 @@ "description": "Helpers for using Webpack in ASP.NET projects. Works in conjunction with the Microsoft.AspNet.SpaServices NuGet package.", "main": "index.js", "scripts": { - "prepublish": "node_modules/.bin/rimraf *.d.ts && tsd update && node_modules/.bin/tsc && echo 'Finished building NPM package \"aspnet-webpack\"'", + "prepublish": "rimraf *.d.ts && tsd update && tsc && echo 'Finished building NPM package \"aspnet-webpack\"'", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Microsoft", diff --git a/src/Microsoft.AspNet.SpaServices/npm/domain-task/package.json b/src/Microsoft.AspNet.SpaServices/npm/domain-task/package.json index 725c8e6..02174e8 100644 --- a/src/Microsoft.AspNet.SpaServices/npm/domain-task/package.json +++ b/src/Microsoft.AspNet.SpaServices/npm/domain-task/package.json @@ -4,7 +4,7 @@ "description": "Tracks outstanding operations for a logical thread of execution", "main": "main.js", "scripts": { - "prepublish": "tsd update && node_modules/.bin/tsc && echo 'Finished building NPM package \"domain-task\"'", + "prepublish": "tsd update && tsc && echo 'Finished building NPM package \"domain-task\"'", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Microsoft", diff --git a/templates/yeoman/package.json b/templates/yeoman/package.json index b33f194..72b1df4 100644 --- a/templates/yeoman/package.json +++ b/templates/yeoman/package.json @@ -5,7 +5,7 @@ "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "build": "node_modules/.bin/tsc && node ./tmp/build/build.js" + "build": "tsc && node ./tmp/build/build.js" }, "author": "Microsoft", "license": "Apache-2.0",