windhamdavid 11 years ago
parent
commit
79b7e3a8b2

+ 2 - 0
app/themes/daw/.gitignore

@@ -0,0 +1,2 @@
+node_modules
+npm-debug.log

+ 25 - 0
app/themes/daw/.jshintrc

@@ -0,0 +1,25 @@
+{
+    "node": true,
+    "browser": true,
+    "esnext": true,
+    "camelcase": true,
+    "curly": true,
+    "eqeqeq": true,
+    "immed": true,
+    "indent": 4,
+    "latedef": true,
+    "newcap": true,
+    "noarg": true,
+    "quotmark": "single",
+    "regexp": true,
+    "undef": true,
+    "unused": true,
+    "strict": true,
+    "trailing": true,
+    "smarttabs": true,
+    "predef": [
+        "Modernizr",
+        "$",
+        "jQuery"
+    ]
+}

+ 4 - 0
app/themes/daw/README.md

@@ -0,0 +1,4 @@
+daw
+===
+
+theme for my personal site

+ 57 - 0
app/themes/daw/gruntfile.js

@@ -0,0 +1,57 @@
+'use strict';
+module.exports = function(grunt) {
+
+    require('load-grunt-tasks')(grunt);
+
+    grunt.initConfig({
+
+        watch: {
+            compass: {
+                files: ['css/**/*.sass'],
+                tasks: ['sass']
+            },
+            js: {
+                files: '<%= jshint.all %>',
+                tasks: ['jshint', 'uglify']
+            },
+            livereload: {
+                options: { livereload: true },
+                files: ['style.css', 'js/*.js', '*.html', '*.php', 'img/**/*.{png,jpg,jpeg,gif,webp,svg}']
+            }
+        },
+
+        jshint: {
+            options: {
+                jshintrc: '.jshintrc',
+                'force': true
+            },
+            all: [
+                'Gruntfile.js',
+                'js/source/**/*.js'
+            ]
+        },
+
+		uglify: {
+		    build: {
+		        src: 'js/script.js',
+		        dest: 'js/script.min.js'
+		    },
+		    build: {
+		        src: 'js/init.js',
+		        dest: 'js/init.min.js'
+		    }
+		}, 
+		
+		phpunit: {
+            all: {
+                dir: 'tests/phpunit/'
+            }
+        },
+
+    });
+	
+	grunt.loadNpmTasks('grunt-contrib-jshint');
+	grunt.loadNpmTasks('grunt-contrib-watch');
+    grunt.registerTask('default', ['watch']);
+
+};

+ 0 - 0
app/themes/daw/js/init.js


+ 0 - 0
app/themes/daw/js/script.js


+ 17 - 0
app/themes/daw/package.json

@@ -0,0 +1,17 @@
+{
+  "name": "grunt-theme",
+  "version": "0.1.0",
+  "dependencies": {
+    "load-grunt-tasks": "~0.3.0"
+  },
+  "devDependencies": {
+    "grunt": "~0.4.2",
+	"grunt-contrib-sass": "~0.7.2",
+	"grunt-contrib-cssmin": "~0.7.0",
+    "grunt-contrib-imagemin": "~0.4.0",
+    "grunt-contrib-jshint": "~0.8.0",
+    "grunt-contrib-uglify": "~0.2.7",
+	"grunt-contrib-concat": "~0.3.0",
+    "grunt-contrib-watch": "~0.5.3"
+  }
+}