Browse Source

Build fixed

pull/1/head
Sebastian 10 years ago
parent
commit
d1a25e7c47
  1. 2
      src/Squidex/app/framework/utils/color.ts
  2. 5
      src/Squidex/appsettings.Production.json
  3. 2
      src/Squidex/package.json
  4. 8
      src/Squidex/project.json

2
src/Squidex/app/framework/utils/color.ts

@ -5,6 +5,8 @@
* Copyright (c) Sebastian Stehle. All rights reserved
*/
/* tslint:disable:no-bitwise */
interface IColorDefinition {
regex: RegExp;

5
src/Squidex/appsettings.Production.json

@ -0,0 +1,5 @@
{
"identity": {
"baseUrl": "http://squidex.io"
}
}

2
src/Squidex/package.json

@ -9,7 +9,7 @@
"test:coverage": "karma start karma.coverage.conf.js",
"test:clean": "rimraf _test-output",
"dev": "webpack-dev-server --inline --hot --port 3000",
"build": "webpack --config app-config/webpack.prod.js --progress --display-error-details",
"build": "webpack --config app-config/webpack.prod.js --bail",
"build:clean": "rimraf wwwroot/build"
},
"dependencies": {

8
src/Squidex/project.json

@ -73,6 +73,12 @@
},
"scripts": {
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
"prepublish": [
"npm install",
"npm run-script build"
],
"postpublish": [
"dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"
]
}
}

Loading…
Cancel
Save