Skip to content

Commit f5ca531

Browse files
committed
Merge branch 'master' of github.com:DaftMonk/generator-angular-fullstack
2 parents 2b76b17 + 3eb017b commit f5ca531

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Diff for: app/templates/Gruntfile.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ module.exports = function (grunt) {
247247
},
248248

249249
// Automatically inject Bower components into the app
250-
bowerInstall: {
250+
wiredep: {
251251
target: {
252252
src: '<%%= yeoman.client %>/index.html',
253253
ignorePath: '<%%= yeoman.client %>/',
@@ -703,7 +703,7 @@ module.exports = function (grunt) {
703703
'injector:sass', <% } %>
704704
'concurrent:server',
705705
'injector',
706-
'bowerInstall',
706+
'wiredep',
707707
'autoprefixer',
708708
'concurrent:debug'
709709
]);
@@ -717,7 +717,7 @@ module.exports = function (grunt) {
717717
'injector:sass', <% } %>
718718
'concurrent:server',
719719
'injector',
720-
'bowerInstall',
720+
'wiredep',
721721
'autoprefixer',
722722
'express:dev',
723723
'wait',
@@ -764,7 +764,7 @@ module.exports = function (grunt) {
764764
'injector:sass', <% } %>
765765
'concurrent:test',
766766
'injector',
767-
'bowerInstall',
767+
'wiredep',
768768
'autoprefixer',
769769
'express:dev',
770770
'protractor'
@@ -784,7 +784,7 @@ module.exports = function (grunt) {
784784
'injector:sass', <% } %>
785785
'concurrent:dist',
786786
'injector',
787-
'bowerInstall',
787+
'wiredep',
788788
'useminPrepare',
789789
'autoprefixer',
790790
'ngtemplates',

Diff for: app/templates/_package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"devDependencies": {
3232
"grunt": "~0.4.4",
3333
"grunt-autoprefixer": "~0.7.2",
34-
"grunt-bower-install": "~1.4.0",
34+
"grunt-wiredep": "~1.8.0",
3535
"grunt-concurrent": "~0.5.0",
3636
"grunt-contrib-clean": "~0.5.0",
3737
"grunt-contrib-concat": "~0.4.0",

Diff for: readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ A live application URL will be available in the output.
225225
>
226226
> If you're using socket.io, you will need to update the client to connect to the correct port for sockets to work.
227227
>
228-
> In `/client/app/components/socket/socket.service` update the socket to connect to port 8000. (with `my-openshift-app` being the deployed name of your app):
228+
> In `/client/components/socket/socket.service` update the socket to connect to port 8000. (with `my-openshift-app` being the deployed name of your app):
229229
>
230230
> var ioSocket = io.connect('my-openshift-app.com:8000');
231231
>

0 commit comments

Comments
 (0)