Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit afe0d38

Browse files
authored
grunt(core): Remove Excess Grunt Dependencies (#1543)
1 parent b0c5ad9 commit afe0d38

File tree

4 files changed

+2
-12
lines changed

4 files changed

+2
-12
lines changed

Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,8 @@ RUN sudo apt-get install -yq nodejs \
5050
&& apt-get clean \
5151
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
5252

53-
# Install gem sass for grunt-contrib-sass
54-
RUN gem install sass
55-
5653
# Install MEAN.JS Prerequisites
57-
RUN npm install --quiet -g grunt-cli gulp bower yo mocha karma-cli pm2 && npm cache clean
54+
RUN npm install --quiet -g gulp bower yo mocha karma-cli pm2 && npm cache clean
5855

5956
RUN mkdir -p /opt/mean.js/public/lib
6057
WORKDIR /opt/mean.js

Dockerfile-production

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,8 @@ RUN sudo apt-get install -yq nodejs \
4747
&& apt-get clean \
4848
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
4949

50-
# Install gem sass for grunt-contrib-sass
51-
RUN gem install sass
52-
5350
# Install MEAN.JS Prerequisites
54-
RUN npm install --quiet -g grunt-cli gulp bower yo mocha karma-cli pm2 && npm cache clean
51+
RUN npm install --quiet -g gulp bower yo mocha karma-cli pm2 && npm cache clean
5552

5653
RUN mkdir -p /opt/mean.js/public/lib
5754
WORKDIR /opt/mean.js

config/assets/default.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ module.exports = {
5353
templates: ['build/templates.js']
5454
},
5555
server: {
56-
gruntConfig: ['gruntfile.js'],
5756
gulpConfig: ['gulpfile.js'],
5857
allJS: ['server.js', 'config/**/*.js', 'modules/*/server/**/*.js'],
5958
models: 'modules/*/server/models/**/*.js',

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@
4747
"file-stream-rotator": "~0.0.6",
4848
"generate-password": "~1.1.1",
4949
"glob": "~7.0.0",
50-
"grunt": "~1.0.1",
51-
"grunt-cli": "~1.2.0",
5250
"helmet": "~2.1.2",
5351
"jasmine-core": "~2.5.0",
5452
"lodash": "~4.15.0",
@@ -112,7 +110,6 @@
112110
"karma-ng-html2js-preprocessor": "~1.0.0",
113111
"karma-phantomjs-launcher": "~1.0.0",
114112
"lcov-result-merger": "~1.2.0",
115-
"load-grunt-tasks": "~3.4.1",
116113
"mock-fs": "~3.11.0",
117114
"node-inspector": "~0.12.7",
118115
"run-sequence": "~1.2.2",

0 commit comments

Comments
 (0)