Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit e1a76a8

Browse files
committed
chore(module): add base module
1 parent f88631b commit e1a76a8

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ module.exports = function (grunt) {
335335
},
336336
files: {
337337
'<%= yo.dist %>/<%= pkg.name %>.js': [
338-
'<%= yo.src %>/common.js',
338+
'<%= yo.src %>/module.js',
339339
'<%= yo.src %>/{,*/}*.js'
340340
]
341341
}

src/module.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
angular.module('mgcrea.ngStrap', [
3+
'mgcrea.ngStrap.modal',
4+
'mgcrea.ngStrap.aside',
5+
'mgcrea.ngStrap.alert',
6+
'mgcrea.ngStrap.button',
7+
'mgcrea.ngStrap.tooltip',
8+
'mgcrea.ngStrap.popover',
9+
'mgcrea.ngStrap.dropdown',
10+
'mgcrea.ngStrap.scrollspy',
11+
'mgcrea.ngStrap.affix',
12+
'mgcrea.ngStrap.tab',
13+
]);

0 commit comments

Comments
 (0)