Switch crypto js to bower via google code svn

Plus grunt task to build CryptoJS from these sources.
This commit is contained in:
lilia 2014-10-31 20:02:58 -07:00
parent 0cc0b8cc72
commit 8e48d95cb4
11 changed files with 5106 additions and 2 deletions

View file

@ -14,6 +14,19 @@ module.exports = function(grunt) {
src: components,
dest: 'js/components.js',
},
cryptojs: {
src: [
"components/cryptojs/src/core.js",
"components/cryptojs/src/sha256.js",
"components/cryptojs/src/hmac.js",
"components/cryptojs/src/enc-base64.js",
"components/cryptojs/src/md5.js",
"components/cryptojs/src/evpkdf.js",
"components/cryptojs/src/cipher-core.js",
"components/cryptojs/src/aes.js"
],
dest: 'js-deps/CryptoJS.js'
},
test: {
src: [
'components/mocha/mocha.js',