This repository has been archived by the owner on Jan 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* server: (91 commits) Minor comment updates Updated date of latest release Updated readme to fix table formatting issues Updated readme to fix table formatting issues Updated readme to fix table formatting issues fixed table formatting for subgenerators fixed grunt-workflow link Made yeogurt logo bigger fixed formatting for readme Updated changelog Added more info on adding third-party scripts to README Updated Changelog to reflect all the latest changes Updated Readme to include all possible grunt targets and options for each task Added prompt so users can select to not use unit testing Updated subgenerators to not create spec files if testing is not selected. Also added unit tests to verfiy this Updated README to reflect new changes Added a new prompt section for unit testing Added new tests for unit testing specifically Updated jsdoc to use node version instead of java Created helper clean-folder-path.js file to modularize reused code across all the sub-generators. Added some helping comments to secrets.js added new test to handle server route testing for static sites fixed server tests Enabled server handling of pushState apps that don't use server templates Removed backbone template helpers for server rendering Removed server check Added prompt for server template rendering Rewrote and updated tests for generator to increase code coverage cssmin task will be created is cssoption === css no matter what Updated and improved generator tests Fixed up an renamed app generator tests added defaults to prompts Removed unneeded tests Added more tests for the view subgenerator Added more tests for subgenerators ... Conflicts: CHANGELOG.md app/templates/grunt/config/watch.js app/templates/grunt/tasks/serve.js package.json test/test-less-no-ie-no-bootstrap.js test/test-less-nobootstrap.js test/test-scss-no-ie-no-bootstrap.js test/test-scss-nobootstrap.js view/templates/view.jade
- Loading branch information
Showing
276 changed files
with
11,100 additions
and
6,608 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
node_modules | ||
*.log | ||
test/temp | ||
test/**/temp | ||
coverage/ | ||
.coveralls.yml | ||
.DS_Store |
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 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,10 @@ | ||
/** | ||
* Gruntfile.js | ||
* Use to check for vulnerable npm packages | ||
*/ | ||
'use strict'; | ||
|
||
module.exports = function(grunt) { | ||
grunt.loadNpmTasks('grunt-nsp-package'); | ||
grunt.registerTask('default', 'validate-package'); | ||
}; |
Oops, something went wrong.