diff --git a/Dockerfile b/Dockerfile index 87e6d8cd9d..96bcb27e3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,11 +50,8 @@ RUN sudo apt-get install -yq nodejs \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -# Install gem sass for grunt-contrib-sass -RUN gem install sass - # Install MEAN.JS Prerequisites -RUN npm install --quiet -g grunt-cli gulp bower yo mocha karma-cli pm2 && npm cache clean +RUN npm install --quiet -g gulp bower yo mocha karma-cli pm2 && npm cache clean RUN mkdir -p /opt/mean.js/public/lib WORKDIR /opt/mean.js diff --git a/Dockerfile-production b/Dockerfile-production index 735b2d4250..eb8e75945e 100644 --- a/Dockerfile-production +++ b/Dockerfile-production @@ -47,11 +47,8 @@ RUN sudo apt-get install -yq nodejs \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -# Install gem sass for grunt-contrib-sass -RUN gem install sass - # Install MEAN.JS Prerequisites -RUN npm install --quiet -g grunt-cli gulp bower yo mocha karma-cli pm2 && npm cache clean +RUN npm install --quiet -g gulp bower yo mocha karma-cli pm2 && npm cache clean RUN mkdir -p /opt/mean.js/public/lib WORKDIR /opt/mean.js diff --git a/config/assets/default.js b/config/assets/default.js index 7d4fdca421..a2ea678f13 100644 --- a/config/assets/default.js +++ b/config/assets/default.js @@ -53,7 +53,6 @@ module.exports = { templates: ['build/templates.js'] }, server: { - gruntConfig: ['gruntfile.js'], gulpConfig: ['gulpfile.js'], allJS: ['server.js', 'config/**/*.js', 'modules/*/server/**/*.js'], models: 'modules/*/server/models/**/*.js', diff --git a/package.json b/package.json index a1bbd4ef34..713faecddd 100644 --- a/package.json +++ b/package.json @@ -47,8 +47,6 @@ "file-stream-rotator": "~0.0.6", "generate-password": "~1.1.1", "glob": "~7.0.0", - "grunt": "~1.0.1", - "grunt-cli": "~1.2.0", "helmet": "~2.1.2", "jasmine-core": "~2.5.0", "lodash": "~4.15.0", @@ -112,7 +110,6 @@ "karma-ng-html2js-preprocessor": "~1.0.0", "karma-phantomjs-launcher": "~1.0.0", "lcov-result-merger": "~1.2.0", - "load-grunt-tasks": "~3.4.1", "mock-fs": "~3.11.0", "node-inspector": "~0.12.7", "run-sequence": "~1.2.2",