Fix templates' project.json scripts for compatibility with dotnet RC2 tooling and Azure
This commit is contained in:
parent
d3ded5bbdf
commit
6848e3a11d
|
|
@ -46,11 +46,11 @@
|
|||
]
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": [
|
||||
"prepublish": [
|
||||
"npm install",
|
||||
"webpack --config webpack.config.vendor.js"
|
||||
"node node_modules/webpack/bin/webpack.js --config webpack.config.vendor.js",
|
||||
"node node_modules/webpack/bin/webpack.js"
|
||||
],
|
||||
"prepublish": [ "webpack" ],
|
||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,11 +46,11 @@
|
|||
]
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": [
|
||||
"prepublish": [
|
||||
"npm install",
|
||||
"webpack --config webpack.config.vendor.js"
|
||||
"node node_modules/webpack/bin/webpack.js --config webpack.config.vendor.js",
|
||||
"node node_modules/webpack/bin/webpack.js"
|
||||
],
|
||||
"prepublish": [ "webpack" ],
|
||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,11 +46,11 @@
|
|||
]
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": [
|
||||
"prepublish": [
|
||||
"npm install",
|
||||
"webpack --config webpack.config.vendor.js"
|
||||
"node node_modules/webpack/bin/webpack.js --config webpack.config.vendor.js",
|
||||
"node node_modules/webpack/bin/webpack.js"
|
||||
],
|
||||
"prepublish": [ "webpack" ],
|
||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,11 +46,11 @@
|
|||
]
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": [
|
||||
"prepublish": [
|
||||
"npm install",
|
||||
"webpack --config webpack.config.vendor.js"
|
||||
"node node_modules/webpack/bin/webpack.js --config webpack.config.vendor.js",
|
||||
"node node_modules/webpack/bin/webpack.js"
|
||||
],
|
||||
"prepublish": [ "webpack" ],
|
||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -45,10 +45,10 @@
|
|||
]
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": [
|
||||
"prepublish": [
|
||||
"npm install",
|
||||
"webpack --config webpack.config.vendor.js",
|
||||
"webpack"
|
||||
"node node_modules/webpack/bin/webpack.js --config webpack.config.vendor.js",
|
||||
"node node_modules/webpack/bin/webpack.js"
|
||||
],
|
||||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue