Skip to content

Commit

Permalink
Fix build until next grunt rc, disable compare_size.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmethvin committed Jan 26, 2013
1 parent 58cd84f commit 47a6f52
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 48 deletions.
89 changes: 46 additions & 43 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,40 +22,42 @@ module.exports = function( grunt ) {
files: distpaths
},
selector: {
"src/selector.js": [
"src/sizzle-jquery.js",
"src/sizzle/sizzle.js"
]
destFile: "src/selector.js",
apiFile: "src/sizzle-jquery.js",
srcFile: "src/sizzle/sizzle.js"
},
build: {
"dist/jquery.js": [
"src/intro.js",
"src/core.js",
"src/callbacks.js",
"src/deferred.js",
"src/support.js",
"src/data.js",
"src/queue.js",
"src/attributes.js",
"src/event.js",
"src/selector.js",
"src/traversing.js",
"src/manipulation.js",

{ flag: "css", src: "src/css.js" },
"src/serialize.js",
{ flag: "ajax", src: "src/ajax.js" },
{ flag: "ajax/script", src: "src/ajax/script.js", needs: ["ajax"] },
{ flag: "ajax/jsonp", src: "src/ajax/jsonp.js", needs: [ "ajax", "ajax/script" ] },
{ flag: "ajax/xhr", src: "src/ajax/xhr.js", needs: ["ajax"] },
{ flag: "effects", src: "src/effects.js", needs: ["css"] },
{ flag: "offset", src: "src/offset.js", needs: ["css"] },
{ flag: "dimensions", src: "src/dimensions.js", needs: ["css"] },
{ flag: "deprecated", src: "src/deprecated.js" },

"src/exports.js",
"src/outro.js"
]
all:{
dest: "dist/jquery.js",
src: [
"src/intro.js",
"src/core.js",
"src/callbacks.js",
"src/deferred.js",
"src/support.js",
"src/data.js",
"src/queue.js",
"src/attributes.js",
"src/event.js",
"src/selector.js",
"src/traversing.js",
"src/manipulation.js",

{ flag: "css", src: "src/css.js" },
"src/serialize.js",
{ flag: "ajax", src: "src/ajax.js" },
{ flag: "ajax/script", src: "src/ajax/script.js", needs: ["ajax"] },
{ flag: "ajax/jsonp", src: "src/ajax/jsonp.js", needs: [ "ajax", "ajax/script" ] },
{ flag: "ajax/xhr", src: "src/ajax/xhr.js", needs: ["ajax"] },
{ flag: "effects", src: "src/effects.js", needs: ["css"] },
{ flag: "offset", src: "src/offset.js", needs: ["css"] },
{ flag: "dimensions", src: "src/dimensions.js", needs: ["css"] },
{ flag: "deprecated", src: "src/deprecated.js" },

"src/exports.js",
"src/outro.js"
]
}
},

jshint: {
Expand Down Expand Up @@ -143,15 +145,15 @@ module.exports = function( grunt ) {
});

// Build src/selector.js
grunt.registerMultiTask( "selector", "Build src/selector.js", function() {
grunt.registerTask( "selector", "Build src/selector.js", function() {

var name = this.file.dest,
files = this.file.src,
sizzle = {
api: grunt.file.read( files[0] ),
src: grunt.file.read( files[1] )
},
compiled, parts;
var cfg = grunt.config("selector"),
name = cfg.destFile,
sizzle = {
api: grunt.file.read( cfg.apiFile ),
src: grunt.file.read( cfg.srcFile )
},
compiled, parts;

/**
Expand Down Expand Up @@ -241,13 +243,14 @@ module.exports = function( grunt ) {
"build",
"Concatenate source (include/exclude modules with +/- flags), embed date/version",
function() {

// Concat specified files.
var compiled = "",
modules = this.flags,
optIn = !modules["*"],
explicit = optIn || Object.keys(modules).length > 1,
name = this.file.dest,
src = this.file.srcRaw,
name = this.data.dest,
src = this.data.src,
deps = {},
excluded = {},
version = grunt.config( "pkg.version" ),
Expand Down Expand Up @@ -479,7 +482,7 @@ module.exports = function( grunt ) {
grunt.loadNpmTasks("grunt-contrib-uglify");

// Default grunt
grunt.registerTask( "default", [ "update_submodules", "selector", "build:*:*", "jshint", "uglify", "dist:*", "compare_size" ] );
grunt.registerTask( "default", [ "update_submodules", "selector", "build:*:*", "jshint", "uglify", "dist:*" ] );

// Short list as a high frequency watch task
grunt.registerTask( "dev", [ "selector", "build:*:*", "jshint" ] );
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jquery",
"title": "jQuery",
"description": "JavaScript library for DOM operations",
"version": "2.0.0pre",
"version": "1.9.1pre",
"homepage": "http://jquery.com",
"author": {
"name": "jQuery Foundation and other contributors",
Expand All @@ -29,10 +29,9 @@
"grunt-compare-size": "~0.3.0",
"grunt-git-authors": "~1.1.0",
"grunt-update-submodules": "~0.2.0",
"grunt-contrib-watch": "~0.2.0",
"grunt-contrib-jshint": "git://github.com/gruntjs/grunt-contrib-jshint.git#7fd70e86c5a8d489095fa81589d95dccb8eb3a46",
"grunt-contrib-uglify": "git://github.com/gruntjs/grunt-contrib-uglify.git#f8da4ff90c7e8f74c81d8e5d3834e6011a90611c",
"grunt-cli": "~0.1.0",
"grunt-contrib-watch": "~0.1.1",
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-uglify": "~0.1.1",
"grunt": "0.4.0rc4",
"testswarm": "0.2.2"
},
Expand Down

0 comments on commit 47a6f52

Please sign in to comment.