-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Wayne Weibel
committed
Feb 25, 2016
1 parent
5bde094
commit 164333d
Showing
8 changed files
with
119 additions
and
39 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
bower_components | ||
jquery.ezstorage.min.js |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module.exports = function(grunt) { | ||
// Project configuration. | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
uglify: { | ||
options: { | ||
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n' | ||
}, | ||
build: { | ||
src: 'jquery.ezstorage.js', | ||
dest: 'jquery.ezstorage.min.js' | ||
} | ||
}, | ||
clean: { | ||
uglify: [ | ||
'jquery.ezstorage.min.js' | ||
] | ||
} | ||
}); | ||
|
||
// Load the plugin that provides the "uglify" task. | ||
grunt.loadNpmTasks('grunt-contrib-uglify'); | ||
grunt.loadNpmTasks('grunt-contrib-clean') | ||
|
||
// Default task(s). | ||
grunt.registerTask('default', ['uglify']); | ||
}; |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "jquery-ezstorage", | ||
"description": "plugin for simple interaction with HTML5 Storage, local and session, and/or cookies", | ||
"main": "jquery.ezstorage.js", | ||
"authors": [ | ||
"Wayne Weibel" | ||
], | ||
"license": "MIT", | ||
"keywords": [ | ||
"storage", | ||
"html5", | ||
"localStorage", | ||
"sessionStorage", | ||
"cookie" | ||
], | ||
"homepage": "https://github.com/wayne-weibel/jquery-ezstorage", | ||
"moduleType": [], | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"jquery.cookie": "jquery-cookie#1.4.1" | ||
} | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "jquery-ezstorage", | ||
"version": "1.2.3", | ||
"description": "plugin for simple interaction with HTML5 Storage, local and session, and/or cookies", | ||
"main": "jquery.ezstorage.js", | ||
"scripts": {}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/wayne-weibel/jquery-ezstorage.git" | ||
}, | ||
"keywords": [ | ||
"storage", | ||
"html5", | ||
"localStorage", | ||
"sessionStorage", | ||
"cookie" | ||
], | ||
"author": "Wayne Weibel", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/wayne-weibel/jquery-ezstorage/issues" | ||
}, | ||
"homepage": "https://github.com/wayne-weibel/jquery-ezstorage#readme", | ||
"dependencies": { | ||
"jquery.cookie": "1.4.1" | ||
}, | ||
"devDependencies": { | ||
"grunt": "^0.4.5", | ||
"grunt-contrib-clean": "^1.0.0", | ||
"grunt-contrib-uglify": "^0.11.0" | ||
} | ||
} |