Skip to content
This repository was archived by the owner on Sep 23, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
bower_components

public_html
!public_html/.gitkeep
30 changes: 17 additions & 13 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,28 @@

module.exports = function (grunt) {


grunt.loadNpmTasks("grunt-contrib-less");
//grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks("grunt-contrib-copy");

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
less: {
build:{
options: {
plugins: [
new (require('less-plugin-clean-css'))({ advanced: true })
]
},
src: "less/style.less",
dest: "public_html/css/style.css"
}
}
dev: {
src:"app/less/style.less",
dest:"app/css/style.css"
},
},
copy:{
fonts: {
expand: true,
cwd: 'bower_components/font-awesome/fonts/',
src: '**',
dest: 'app/fonts',
flatten:true
}
}
});

grunt.registerTask("default",['less']);
grunt.registerTask('default', ['copy','less']);

};
22 changes: 0 additions & 22 deletions LICENSE

This file was deleted.

2 changes: 0 additions & 2 deletions README.md

This file was deleted.

Loading