--- /dev/null
+{"version":3,"file":"glm-grid.css","sources":["app.scss","_glm-grid.scss","_settings.scss"],"sourcesContent":["@import 'glm-grid';\n@import 'settings';","",""],"mappings":"","names":[],"sourceRoot":"/source/"}
\ No newline at end of file
--- /dev/null
+var gulp = require('gulp');
+var rename = require('gulp-rename');
+var sass = require('gulp-sass');
+var maps = require('gulp-sourcemaps');
+
+function swallowError (error) {
+
+ // If you want details of the error in the console
+ console.log(error.toString())
+
+ this.emit('end')
+}
+
+function swallowError (error) {
+
+ // If you want details of the error in the console
+ console.log(error.toString());
+
+ this.emit('end');
+}
+
+gulp.task('sass', function() {
+ return gulp.src('scss/app.scss')
+ .pipe(maps.init())
+ .on('error', swallowError)
+ .pipe(sass({
+ outputStyle: 'compressed'
+ })).on('error', swallowError)
+ .pipe(rename('glm-grid.css'))
+ .pipe(maps.write('.'))
+ .pipe(gulp.dest('css'));
+});
+
+gulp.task('watch', function () {
+ gulp.watch('scss/**/*.{scss,sass}', ['sass']);
+ gulp.watch('gulpfile.js');
+});
+
+gulp.task('build', ["sass"]);
+
+gulp.task('runwatch', ["sass"]);
+
+gulp.task('default', ["runwatch","watch"]);
\ No newline at end of file
--- /dev/null
+{
+ "name": "glm-member-db",
+ "version": "0.0.0",
+ "description": "=== Gaslight Media Member Database === Contributors: cscott@gaslightmedia.com Donate link: http://www.gaslightmedia.com Tags: Gaslight Media,Plugin,Members Requires at least: 3.0.1 Tested up to: 3.4 Stable tag: 4.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html",
+ "main": "index.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git@cvs2:WP-Plugins/glm-member-db.git"
+ },
+ "author": "",
+ "license": "ISC",
+ "dependencies": {
+ "gulp": "~3.9.1",
+ "gulp-sass": "~2.3.2",
+ "gulp-rename": "~1.2.2",
+ "gulp-sourcemaps": "~1.6.0"
+ }
+}