Commit c652dd4d by kevalbhatt

ATLAS-3630 : UI: Update node version to 12.x

parent 54042d35
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
*/ */
'use strict'; 'use strict';
var sass = require('node-sass');
module.exports = function(grunt) { module.exports = function(grunt) {
var buildTime = new Date().getTime(), var buildTime = new Date().getTime(),
distPath = './dist', distPath = './dist',
...@@ -198,6 +199,10 @@ module.exports = function(grunt) { ...@@ -198,6 +199,10 @@ module.exports = function(grunt) {
} }
}, },
sass: { sass: {
options: {
implementation: sass,
sourceMap: false
},
build: { build: {
files: { files: {
[distPath + '/css/style.css']: modulesPath + 'css/scss/style.scss', [distPath + '/css/style.css']: modulesPath + 'css/scss/style.scss',
......
...@@ -65,8 +65,9 @@ ...@@ -65,8 +65,9 @@
"grunt-contrib-uglify": "2.1.0", "grunt-contrib-uglify": "2.1.0",
"grunt-contrib-watch": "1.1.0", "grunt-contrib-watch": "1.1.0",
"grunt-middleware-proxy": "1.0.7", "grunt-middleware-proxy": "1.0.7",
"grunt-sass": "2.1.0", "grunt-sass": "3.1.0",
"grunt-template": "1.0.0", "grunt-template": "1.0.0",
"load-grunt-tasks": "3.5.2" "load-grunt-tasks": "3.5.2",
"node-sass": "4.13.1"
} }
} }
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
*/ */
'use strict'; 'use strict';
var sass = require('node-sass');
module.exports = function(grunt) { module.exports = function(grunt) {
var buildTime = new Date().getTime(), var buildTime = new Date().getTime(),
distPath = './dist/n', distPath = './dist/n',
...@@ -204,6 +205,10 @@ module.exports = function(grunt) { ...@@ -204,6 +205,10 @@ module.exports = function(grunt) {
} }
}, },
sass: { sass: {
options: {
implementation: sass,
sourceMap: false
},
build: { build: {
files: { files: {
[distPath + '/css/style.css']: modulesPath + 'css/scss/style.scss', [distPath + '/css/style.css']: modulesPath + 'css/scss/style.scss',
......
...@@ -66,8 +66,9 @@ ...@@ -66,8 +66,9 @@
"grunt-contrib-uglify": "2.1.0", "grunt-contrib-uglify": "2.1.0",
"grunt-contrib-watch": "1.1.0", "grunt-contrib-watch": "1.1.0",
"grunt-middleware-proxy": "1.0.7", "grunt-middleware-proxy": "1.0.7",
"grunt-sass": "2.1.0", "grunt-sass": "3.1.0",
"grunt-template": "1.0.0", "grunt-template": "1.0.0",
"load-grunt-tasks": "3.5.2" "load-grunt-tasks": "3.5.2",
"node-sass": "4.13.1"
} }
} }
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -13,26 +13,26 @@ ...@@ -13,26 +13,26 @@
"license": "MIT", "license": "MIT",
"peerDependencies": {}, "peerDependencies": {},
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.4.4", "@babel/cli": "7.4.4",
"@babel/core": "^7.4.5", "@babel/core": "7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-react": "^7.0.0", "@babel/preset-react": "7.0.0",
"axios": "^0.19.0", "axios": "0.19.0",
"babel-loader": "^8.0.6", "babel-loader": "8.0.6",
"babel-plugin-lodash": "^3.3.4", "babel-plugin-lodash": "3.3.4",
"babel-plugin-react-transform": "^3.0.0", "babel-plugin-react-transform": "3.0.0",
"gh-pages": "^2.0.1", "gh-pages": "2.0.1",
"react-github-btn": "^1.0.5", "react-github-btn": "1.0.5",
"react-syntax-highlighter": "^11.0.1", "react-syntax-highlighter": "11.0.1",
"reactstrap": "^8.0.0", "reactstrap": "8.0.0",
"xml2js": "^0.4.19" "xml2js": "0.4.19"
}, },
"dependencies": { "dependencies": {
"docz": "^1.2.0", "docz": "1.2.0",
"facepaint": "^1.2.1", "facepaint": "1.2.1",
"hash-source": "^1.0.4", "hash-source": "1.0.4",
"react-feather": "^1.1.6", "react-feather": "1.1.6",
"styled-components": "^4.3.1", "styled-components": "4.3.1",
"yargs": "^14.0.0" "yargs": "14.0.0"
} }
} }
...@@ -648,9 +648,8 @@ ...@@ -648,9 +648,8 @@
<skipTests>false</skipTests> <skipTests>false</skipTests>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<node.version>v0.10.30</node.version> <node-for-v2.version>v12.16.0</node-for-v2.version>
<node-for-v2.version>v8.9.0</node-for-v2.version> <npm-for-v2.version>6.13.7</npm-for-v2.version>
<npm-for-v2.version>5.5.1</npm-for-v2.version>
<slf4j.version>1.7.21</slf4j.version> <slf4j.version>1.7.21</slf4j.version>
<jetty.version>9.3.14.v20161028</jetty.version> <jetty.version>9.3.14.v20161028</jetty.version>
<jetty.jsp.version>9.2.12.v20150709</jetty.jsp.version> <jetty.jsp.version>9.2.12.v20150709</jetty.jsp.version>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment