windhamdavid 10 years ago
parent
commit
6aedc50d4b
2 changed files with 22 additions and 0 deletions
  1. 9 0
      gruntfile.js
  2. 13 0
      package.json

+ 9 - 0
gruntfile.js

@@ -0,0 +1,9 @@
+grunt.loadNpmTasks('grunt-contrib-cssmin');
+
+cssmin: {
+  css: {
+	  src: 'css/grid.css',
+	  dest: 'grid.min.css'
+	  
+  }
+},

+ 13 - 0
package.json

@@ -0,0 +1,13 @@
+{
+  "name": "dw wp",
+  "version": "2.0.0",
+  "dependencies": {},
+  "devDependencies": {
+    "grunt": "~0.4.5",
+	"grunt-contrib-uglify": "~0.6.0",
+    "grunt-contrib-jshint": "~0.10.0",
+	"grunt-contrib-clean": "~0.6.0",
+	"grunt-contrib-cssmin": "~0.10.0",
+    "grunt-contrib-watch": "~0.5.x",
+  }
+}