8
0
Pārlūkot izejas kodu

Added template for grunt.

fredck 11 gadi atpakaļ
vecāks
revīzija
406ecef467
2 mainītis faili ar 8 papildinājumiem un 2 dzēšanām
  1. 5 0
      gruntfile.js
  2. 3 2
      package.json

+ 5 - 0
gruntfile.js

@@ -0,0 +1,5 @@
+module.exports = function( grunt ) {
+	grunt.initConfig( {
+		pkg: grunt.file.readJSON( 'package.json' )
+	} );
+};

+ 3 - 2
package.json

@@ -1,9 +1,10 @@
 {
-	"name": "{programmatic name of the application}",
-	"version": "{semver version}",
+	"name": "programmatic-name-of-the-application",
+	"version": "0.1.0",
 	"description": "A short description",
 
 	"devDependencies": {
+		"grunt": "~0.4.5"
 	},
 
 	"author": "CKSource (http://cksource.com/)",