Upgrading vendor folder dependencies.

This commit is contained in:
Renan DelValle 2018-12-27 09:58:53 -08:00
parent 4a0cbcd770
commit acbe9ad9e5
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9
229 changed files with 10735 additions and 4528 deletions

View file

@ -221,31 +221,37 @@ module.exports = function(grunt) {
// The main thrift library file. not es6 yet :(
lib: {
src: ['src/**/*.js'],
options: {
// options here to override JSHint defaults
globals: {
jQuery: true,
console: true,
module: true,
document: true,
},
}
},
// The test files use es6
test: {
src: ['Gruntfile.js', 'test/*.js'],
options: {
// options here to override JSHint defaults
globals: {
jQuery: true,
console: true,
module: true,
document: true,
},
esversion: 6,
}
},
}
gen_js_code: {
src: ['test/gen-js/*.js', 'test/gen-js-jquery/*.js'],
},
gen_es6_code: {
src: ['test/gen-js-es6/*.js'],
options: {
esversion: 6,
}
},
gen_node_code: {
src: ['test/gen-nodejs/*.js'],
options: {
node: true,
}
},
gen_node_es6_code: {
src: ['test/gen-nodejs-es6/*.js'],
options: {
node: true,
esversion: 6,
}
}
},
});
grunt.loadNpmTasks('grunt-contrib-uglify');
@ -269,8 +275,8 @@ module.exports = function(grunt) {
]);
grunt.registerTask('test', [
'jshint',
'installAndGenerate',
'jshint',
'shell:ThriftTestServer', 'shell:ThriftTestServer_TLS',
'shell:ThriftTestServerES6', 'shell:ThriftTestServerES6_TLS',
'wait',

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "thrift",
"version": "1.0.0",
"version": "0.12.0",
"devDependencies": {
"grunt": "^1.0.2",
"grunt-cli": "^1.2.0",

View file

@ -46,7 +46,7 @@ var Thrift = {
* @const {string} Version
* @memberof Thrift
*/
Version: '1.0.0-dev',
Version: '0.12.0',
/**
* Thrift IDL type string to Id mapping.