This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
153 changed files
with
2,606 additions
and
2,066 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,4 +33,4 @@ indent_style = tab | |
|
||
# Standard at: | ||
[Makefile] | ||
indent_style = tab | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,5 @@ | |
npm-debug.log | ||
node_modules/ | ||
public/lib | ||
app/tests/coverage/ | ||
.bower-*/ | ||
.idea/ | ||
config/sslcert/*.pem |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
{ | ||
"name": "meanjs", | ||
"version": "0.3.2", | ||
"version": "0.4.0", | ||
"description": "Fullstack JavaScript with MongoDB, Express, AngularJS, and Node.js.", | ||
"dependencies": { | ||
"bootstrap": "~3", | ||
"angular": "~1.2", | ||
"angular-resource": "~1.2", | ||
"angular-animate": "~1.2", | ||
"angular-mocks": "~1.2", | ||
"angular-bootstrap": "~0.11.2", | ||
"angular-bootstrap": "~0.11.0", | ||
"angular-ui-utils": "~0.1.1", | ||
"angular-ui-router": "~0.2.11" | ||
"angular-ui-router": "~0.2.10", | ||
"angular-file-upload": "~1.1.5" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
client: { | ||
lib: { | ||
css: [ | ||
'public/lib/bootstrap/dist/css/bootstrap.css', | ||
'public/lib/bootstrap/dist/css/bootstrap-theme.css' | ||
], | ||
js: [ | ||
'public/lib/angular/angular.js', | ||
'public/lib/angular-resource/angular-resource.js', | ||
'public/lib/angular-animate/angular-animate.js', | ||
'public/lib/angular-ui-router/release/angular-ui-router.js', | ||
'public/lib/angular-ui-utils/ui-utils.js', | ||
'public/lib/angular-bootstrap/ui-bootstrap-tpls.js', | ||
'public/lib/angular-file-upload/angular-file-upload.js' | ||
], | ||
tests: ['public/lib/angular-mocks/angular-mocks.js'] | ||
}, | ||
css: [ | ||
'modules/*/client/css/*.css' | ||
], | ||
less: [ | ||
'modules/*/client/less/*.less' | ||
], | ||
sass: [ | ||
'modules/*/client/scss/*.scss' | ||
], | ||
js: [ | ||
'modules/core/client/app/config.js', | ||
'modules/core/client/app/init.js', | ||
'modules/*/client/*.js', | ||
'modules/*/client/**/*.js' | ||
], | ||
views: ['modules/*/client/views/**/*.html'] | ||
}, | ||
server: { | ||
allJS: ['gruntfile.js', 'server.js', 'config/**/*.js', 'modules/*/server/**/*.js'], | ||
models: 'modules/*/server/models/**/*.js', | ||
routes: ['modules/*[!core]/server/routes/**/*.js', 'modules/core/server/routes/**/*.js'], | ||
sockets: 'modules/*/server/sockets/**/*.js', | ||
config: 'modules/*/server/config/*.js', | ||
policies: 'modules/*/server/policies/*.js', | ||
views: 'modules/*/server/views/*.html' | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
// Development assets | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
client: { | ||
lib: { | ||
css: [ | ||
'public/lib/bootstrap/dist/css/bootstrap.min.css', | ||
'public/lib/bootstrap/dist/css/bootstrap-theme.min.css', | ||
], | ||
js: [ | ||
'public/lib/angular/angular.min.js', | ||
'public/lib/angular-resource/angular-resource.min.js', | ||
'public/lib/angular-animate/angular-animate.min.js', | ||
'public/lib/angular-ui-router/release/angular-ui-router.min.js', | ||
'public/lib/angular-ui-utils/ui-utils.min.js', | ||
'public/lib/angular-bootstrap/ui-bootstrap-tpls.min.js', | ||
'public/lib/angular-file-upload/angular-file-upload.min.js' | ||
] | ||
}, | ||
css: 'public/dist/application.min.css', | ||
js: 'public/dist/application.min.js' | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
tests: { | ||
client: ['modules/*/tests/client/**/*.js'], | ||
server: ['modules/*/tests/server/**/*.js'], | ||
e2e: ['modules/*/tests/e2e/**/*.js'] | ||
} | ||
}; |
Oops, something went wrong.