Skip to content

Commit bf50041

Browse files
committed
major updates to data
1 parent f47e027 commit bf50041

11 files changed

+4294
-0
lines changed

Gruntfile.js

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
/*global module:false*/
2+
module.exports = function(grunt) {
3+
4+
// Project configuration.
5+
grunt.initConfig({
6+
// Metadata.
7+
pkg: grunt.file.readJSON('package.json'),
8+
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
9+
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
10+
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
11+
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
12+
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */\n',
13+
// Task configuration.
14+
concat: {
15+
options: {
16+
banner: '<%= banner %>',
17+
stripBanners: true
18+
},
19+
dist: {
20+
src: ['lib/<%= pkg.name %>.js'],
21+
dest: 'dist/<%= pkg.name %>.js'
22+
}
23+
},
24+
uglify: {
25+
options: {
26+
banner: '<%= banner %>'
27+
},
28+
dist: {
29+
src: '<%= concat.dist.dest %>',
30+
dest: 'dist/<%= pkg.name %>.min.js'
31+
}
32+
},
33+
jshint: {
34+
options: {
35+
curly: true,
36+
eqeqeq: true,
37+
immed: true,
38+
latedef: true,
39+
newcap: true,
40+
noarg: true,
41+
sub: true,
42+
undef: true,
43+
unused: true,
44+
boss: true,
45+
eqnull: true,
46+
browser: true,
47+
globals: {
48+
jQuery: true
49+
}
50+
},
51+
gruntfile: {
52+
src: 'Gruntfile.js'
53+
},
54+
lib_test: {
55+
src: ['lib/**/*.js', 'test/**/*.js']
56+
}
57+
},
58+
qunit: {
59+
files: ['test/**/*.html']
60+
},
61+
watch: {
62+
gruntfile: {
63+
files: '<%= jshint.gruntfile.src %>',
64+
tasks: ['jshint:gruntfile']
65+
},
66+
lib_test: {
67+
files: '<%= jshint.lib_test.src %>',
68+
tasks: ['jshint:lib_test', 'qunit']
69+
}
70+
}
71+
});
72+
73+
// These plugins provide necessary tasks.
74+
grunt.loadNpmTasks('grunt-contrib-concat');
75+
grunt.loadNpmTasks('grunt-contrib-uglify');
76+
grunt.loadNpmTasks('grunt-contrib-qunit');
77+
grunt.loadNpmTasks('grunt-contrib-jshint');
78+
grunt.loadNpmTasks('grunt-contrib-watch');
79+
80+
// Default task.
81+
grunt.registerTask('default', ['jshint', 'qunit', 'concat', 'uglify']);
82+
83+
};

assets/js/math remove minus from number - Google Search.html

+131
Large diffs are not rendered by default.

assets/js/math remove minus from number - Google Search_files/cb=gapi.loaded_0

+488
Large diffs are not rendered by default.

assets/js/math remove minus from number - Google Search_files/frame.html

+198
Large diffs are not rendered by default.

assets/js/math remove minus from number - Google Search_files/rs=ACT90oGV0TYu4cUaLBncEYCndLfS1pU3vg

+1,304
Large diffs are not rendered by default.

assets/js/math remove minus from number - Google Search_files/rs=ACT90oGV0TYu4cUaLBncEYCndLfS1pU3vg(1)

+1,380
Large diffs are not rendered by default.

assets/js/math remove minus from number - Google Search_files/rs=AItRSTMWVXB-8xxk-N2mt3yPXbeObjoJlw

+376
Large diffs are not rendered by default.

assets/js/math remove minus from number - Google Search_files/rs=AItRSTNIriWCc1Oa5Gt83uGMxSuMsnXi6w

+1
Large diffs are not rendered by default.

assets/js/math remove minus from number - Google Search_files/rs=AItRSTOlhbuorc8-HGwVGT4fcskZCcUb2A

+319
Large diffs are not rendered by default.

assets/js/taffy-min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"engines": {
3+
"node": ">= 0.10.0"
4+
},
5+
"devDependencies": {
6+
"grunt": "~0.4.5",
7+
"grunt-contrib-jshint": "~0.10.0",
8+
"grunt-contrib-watch": "~0.6.1",
9+
"grunt-contrib-qunit": "~0.5.2",
10+
"grunt-contrib-concat": "~0.4.0",
11+
"grunt-contrib-uglify": "~0.5.0"
12+
}
13+
}

0 commit comments

Comments
 (0)