Compare commits

...

1 Commits

Author SHA1 Message Date
Andrew Henry
86ee4036fa Make work windows 2019-08-29 21:05:20 -07:00
3 changed files with 6 additions and 4 deletions

View File

@@ -2,7 +2,9 @@
"name": "openmct", "name": "openmct",
"version": "1.0.0-beta", "version": "1.0.0-beta",
"description": "The Open MCT core platform", "description": "The Open MCT core platform",
"dependencies": {}, "dependencies": {
"sass-loader": "^7.1.0"
},
"devDependencies": { "devDependencies": {
"acorn": "6.2.0", "acorn": "6.2.0",
"angular": "1.4.14", "angular": "1.4.14",
@@ -75,7 +77,7 @@
"start": "node app.js", "start": "node app.js",
"lint": "eslint platform src openmct.js", "lint": "eslint platform src openmct.js",
"lint:fix": "eslint platform src openmct.js --fix", "lint:fix": "eslint platform src openmct.js --fix",
"build:prod": "NODE_ENV=production webpack", "build:prod": "set NODE_ENV=production webpack",
"build:dev": "webpack", "build:dev": "webpack",
"build:watch": "webpack --watch", "build:watch": "webpack --watch",
"test": "karma start --single-run", "test": "karma start --single-run",

View File

@@ -29,4 +29,4 @@
@import "constants-snow"; // TEMP @import "constants-snow"; // TEMP
//@import "constants-maelstrom"; //@import "constants-maelstrom";
@import "mixins"; @import "mixins";
@import "animations"; @import "animations";

View File

@@ -74,7 +74,7 @@ const webpackConfig = {
devMode ? 'style-loader': MiniCssExtractPlugin.loader, devMode ? 'style-loader': MiniCssExtractPlugin.loader,
'css-loader', 'css-loader',
{ {
loader: 'fast-sass-loader', loader: 'sass-loader',
options: { options: {
includePaths: bourbon.includePaths includePaths: bourbon.includePaths
} }