Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mayaman committed Jun 22, 2015
0 parents commit 98b3f4f
Show file tree
Hide file tree
Showing 300 changed files with 58,286 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
*.yo-rc.json

pids
logs
results

npm-debug.log
node_modules

*.sublime-*
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mayaman26 (https://github.com/mayaman26)
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
v0.1.0:
date: "2015-05-30"
changes:
- Generated by the [Yeoman Generator](https://github.com/assemble/generator-assemble) for [Assemble](http://assemble.io)
145 changes: 145 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
/*
* Generated on 2015-05-30
* generator-assemble v0.5.0
* https://github.com/assemble/generator-assemble
*
* Copyright (c) 2015 Hariadi Hinta
* Licensed under the MIT license.
*/

'use strict';

// # Globbing
// for performance reasons we're only matching one level down:
// '<%= config.src %>/templates/pages/{,*/}*.hbs'
// use this if you want to match all subfolders:
// '<%= config.src %>/templates/pages/**/*.hbs'

module.exports = function(grunt) {

require('time-grunt')(grunt);
require('load-grunt-tasks')(grunt);

// Project configuration. actual tasks
grunt.initConfig({

config: {
src: 'src',
dist: 'dist'
},

watch: {
assemble: {
files: ['<%= config.src %>/{content,data,templates}/{,*/}*.{md,hbs,yml,json}'],
tasks: ['assemble']
},
livereload: {
options: {
livereload: '<%= connect.options.livereload %>'
},
files: [
'<%= config.dist %>/{,*/}*.html',
'<%= config.dist %>/assets/css/*.css',
'<%= config.dist %>/assets/js/*.js',
'<%= config.dist %>/assets/img/*.{png,jpg,jpeg,gif,webp,svg}'
]
}
},

// runs the local server
connect: {
options: {
port: 9000,
livereload: 35729,
// change this to '0.0.0.0' to access the server from outside
hostname: 'localhost'
},
livereload: {
options: {
open: true,
base: [
'<%= config.dist %>'
]
}
}
},

assemble: {
pages: {
options: {
flatten: true,
helpers: ['<%= config.dist %>/assets/js/translation.js'],
assets: '<%= config.dist %>/assets',
layout: '<%= config.src %>/templates/layouts/default.hbs',
data: '<%= config.src %>/data/*.{json,yml}',
partials: '<%= config.src %>/templates/partials/*.hbs',
plugins: ['assemble-contrib-permalinks','assemble-contrib-sitemap','assemble-middleware-i18n'],
},
files: {
'<%= config.dist %>/': ['<%= config.src %>/templates/pages/*.hbs']
}
}
},

copy: {
bootstrap: {
expand: true,
cwd: 'bower_components/bootstrap/dist/',
src: '**',
dest: '<%= config.dist %>/assets/'
},
theme: {
expand: true,
cwd: 'src/assets/css',
src: '**',
dest: '<%= config.dist %>/assets/css/'
},
images: {
expand: true,
cwd: 'src/assets/img',
src: '**',
dest: '<%= config.dist %>/assets/img/'
},
js: {
expand: true,
cwd: 'src/assets/js',
src: '**',
dest: '<%= config.dist %>/assets/js/'
},
fonts: {
expand: true,
cwd: 'src/assets/fonts',
src: '**',
dest: '<%= config.dist %>/assets/fonts'
}
},

// Before generating any new files,
// remove any previously-created files.
clean: ['<%= config.dist %>/**/*.{html,xml}']

});

grunt.loadNpmTasks('assemble');


// multi-tasks: collections of other tasks
grunt.registerTask('server', [
'build',
'connect:livereload',
'watch'
]);

// runs three tasks in order
grunt.registerTask('build', [
'clean',
'copy',
'assemble'
]);

// runs with just grunt command
grunt.registerTask('default', [
'build'
]);

};
22 changes: 22 additions & 0 deletions LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2015 Hariadi Hinta, contributors.

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# p5js

> The best project ever..
## [Assemble](http://assemble.io/)

Assemble is a component and static site generator that makes it dead simple to build modular sites, documentation and components from reusable templates and data.

* Documentation
* Plugins - Plugins extend the core functionality of Assemble.
* Helpers - Documentation for the helpers in the [handlebars-helpers](http://github.com/assemble/handlebars-helpers) library.

## Contributing
All contributions are welcome! The simplest way to show your support for this project is to **"star" it**. Please see [Contributing to Assemble](http://assemble.io/contributing) for more information.

## Release History
* 2015-05-30   v0.1.0   Generated by the [Yeoman Generator](https://github.com/assemble/generator-assemble) for [Assemble](http://assemble.io)
8 changes: 8 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "p5js",
"version": "0.1.0",
"dependencies": {
"bootstrap": "~3.2.0"
},
"private": true
}
47 changes: 47 additions & 0 deletions bower_components/bootstrap/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "bootstrap",
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
"version": "3.2.0",
"keywords": [
"css",
"js",
"less",
"mobile-first",
"responsive",
"front-end",
"framework",
"web"
],
"homepage": "http://getbootstrap.com",
"main": [
"less/bootstrap.less",
"dist/css/bootstrap.css",
"dist/js/bootstrap.js",
"dist/fonts/glyphicons-halflings-regular.eot",
"dist/fonts/glyphicons-halflings-regular.svg",
"dist/fonts/glyphicons-halflings-regular.ttf",
"dist/fonts/glyphicons-halflings-regular.woff"
],
"ignore": [
".*",
"_config.yml",
"CNAME",
"composer.json",
"CONTRIBUTING.md",
"docs",
"js/tests",
"test-infra"
],
"dependencies": {
"jquery": ">= 1.9.0"
},
"_release": "3.2.0",
"_resolution": {
"type": "version",
"tag": "v3.2.0",
"commit": "c068162161154a4b85110ea1e7dd3d7897ce2b72"
},
"_source": "git://github.com/twbs/bootstrap.git",
"_target": "~3.2.0",
"_originalSource": "bootstrap"
}
Loading

0 comments on commit 98b3f4f

Please sign in to comment.