Skip to content

Commit

Permalink
stub data added, zenpen source and basic initializatino added
Browse files Browse the repository at this point in the history
  • Loading branch information
putskoo committed Sep 8, 2013
1 parent d85a501 commit 8e36b75
Show file tree
Hide file tree
Showing 36 changed files with 3,786 additions and 116 deletions.
47 changes: 34 additions & 13 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,26 @@ module.exports = function(grunt) {

concat: {
development: {
src: [
'bower_components/jquery/jquery.js',
'bower_components/angular/angular.js',
'bower_components/angular-route/angular-route.js',
'bower_components/angular-resource/angular-resource.js',
'bower_components/angular-cookies/angular-cookies.js',
'bower_components/angular-sanitize/angular-sanitize.js'
],
dest: 'public/js/core.js'
files: {
'public/js/core.js': [
'bower_components/jquery/jquery.js',
'bower_components/angular/angular.js',
'bower_components/angular-route/angular-route.js',
'bower_components/angular-resource/angular-resource.js',
'bower_components/angular-cookies/angular-cookies.js',
'bower_components/angular-sanitize/angular-sanitize.js',
'vendor/zenpen/js/libs/Blob.js',
'vendor/zenpen/js/libs/FileSaver.js',
'vendor/zenpen/js/libs/fullScreen.js',
'vendor/zenpen/js/utils.js',
//'vendor/zenpen/js/ui.js',
'vendor/zenpen/js/editor.js'
],
'public/css/vendor.css': [
'vendor/zenpen/css/fonts.css',
'vendor/zenpen/css/style.css'
]
}
},

production: {
Expand All @@ -73,10 +84,20 @@ module.exports = function(grunt) {

copy: {
development: {
expand: true,
cwd: './scripts/',
src: '{,**/}*.js',
dest: './public/js/'
files: [
{
expand: true,
cwd: './scripts/',
src: '{,**/}*.js',
dest: './public/js/'
},
{
expand: true,
cwd: './styles/fonts/',
src: '**',
dest: './public/css/fonts/'
}
]
},
build: {
files: {
Expand Down
Loading

0 comments on commit 8e36b75

Please sign in to comment.