Further attempt to make the build pass

This commit is contained in:
SteveSandersonMS
2016-05-02 12:47:58 -07:00
parent 323711fc24
commit 992060b908
7 changed files with 7 additions and 7 deletions

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",