This file contains hidden or 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
gulp.task('js:dev', ['clean:dev'], function() { | |
return es.concat( | |
gulp.src('app/js/**/*.coffee') | |
.pipe(coffee({base: true})), | |
gulp.src('app/js/**/*.js') | |
) | |
.pipe(concat('app.js')) | |
.pipe(gulp.dest('build/js')) | |
.pipe(watch()) | |
.pipe(reload()); |
This file contains hidden or 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
packages | |
├── Mesosphere | |
├── accounts-ui-bootstrap-dropdown | |
├── bootboxjs | |
├── dm-classes-management | |
├── dm-districts-management | |
├── dm-lessons-management | |
├── dm-list | |
├── dm-media-items | |
├── dm-schools-management |
This file contains hidden or 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
(function() { | |
'use strict'; | |
var gulp = require('gulp'), | |
gutil = require('gulp-util'), | |
dot = require('gulp-dot'), | |
less = require('gulp-less'), | |
sass = require('gulp-sass'), | |
rm = require('rimraf'), | |
reload = require('gulp-livereload'), |
This file contains hidden or 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
// var gulp = require('gulp'), | |
// coffee = require('gulp-coffee'), | |
// coffeelint = require('gulp-coffeelint'), | |
// gutil = require('gulp-util'), | |
// todo = require('gulp-todo'), | |
// source = require('vinyl-source-stream'), | |
// watchify = require('watchify'), | |
// header = require('gulp-header'), | |
// pkg = require('./package'), | |
// banner; |
This file contains hidden or 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
#!/bin/bash -x | |
useradd -m NibblesAndBits | |
sudo apt-get install build-essential -y | |
sudo apt-get install software-properties-common | |
sudo add-apt-repository ppa:chris-lea/node.js | |
sudo apt-get update -y | |
sudo apt-get install nodejs -y | |
sudo apt-get install mongodb -y | |
sudo apt-get install couchdb -y |
This file contains hidden or 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
<head> | |
<title>ffff</title> | |
</head> | |
<body> | |
<h1>ffff</h1> | |
{{> welcome }} | |
{{> persons }} | |
</body> |
This file contains hidden or 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
<link rel="import" href="../bower_components/polymer/polymer.html"> | |
<polymer-element name="polymer-file-upload" attributes=""> | |
<template> | |
<style> | |
/* styles for the custom element itself - lowest specificity */ | |
:host { display: block; } | |
/* | |
style if an ancestor has the different class | |
:host(.different) { } |
This file contains hidden or 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
<link rel="import" href="../bower_components/polymer/polymer.html"> | |
<polymer-element name="polymer-file-upload" attributes=""> | |
<template> | |
<style> | |
/* styles for the custom element itself - lowest specificity */ | |
:host { display: block; } | |
/* | |
style if an ancestor has the different class | |
:host(.different) { } |
This file contains hidden or 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
<link rel="import" href="../bower_components/polymer/polymer.html"> | |
<polymer-element name="polymer-file-upload" attributes=""> | |
<template> | |
<style> | |
/* styles for the custom element itself - lowest specificity */ | |
:host { display: block; } | |
/* | |
style if an ancestor has the different class | |
:host(.different) { } |
This file contains hidden or 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
{ | |
"name": "S3-Progress", | |
"description": "A full featured helper for easily uploading files to Amazon S3 from your Meteor application.", | |
"homepage": "https://github.com/digilord/Meteor-S3-Progress", | |
"author": "Digilord <[email protected]>", | |
"version": "1.5.8", | |
"git": "https://github.com/digilord/Meteor-S3-Progress.git", | |
"packages": { | |
"collection-hooks": {}, | |
"momentjs": {}, |