Opened 11 years ago
Closed 11 years ago
#11943 closed bug (fixed)
Custom Build broken
Reported by: | gnarf | Owned by: | Rick Waldron |
---|---|---|---|
Priority: | high | Milestone: | None |
Component: | build | Version: | git |
Keywords: | Cc: | Rick Waldron | |
Blocked by: | Blocking: |
Description
The custom build grunt task on master doesn't actually generate custom builds.
Here's a regular build:
~/Projects/jquery:master$ grunt Running "submodules" task Running "selector:src/selector.js" (selector) task File 'src/selector.js' created. Running "build:dist/jquery.js:*" (build) task File 'dist/jquery.js' created. Running "lint:files" (lint) task Lint free. Running "min:dist/jquery.min.js" (min) task File "dist/jquery.min.js" created. Uncompressed size: 255395 bytes. Compressed size: 33506 bytes gzipped (92944 bytes minified). Running "dist:*" (dist) task Running "compare_size:files" (compare_size) task Sizes - compared to master 255395 (-) dist/jquery.js 92944 (-) dist/jquery.min.js 33506 (-) dist/jquery.min.js.gz Done, without errors.
Here's a custom build:
~/Projects/jquery:master$ grunt custom:-ajax,-css,-dimensions,-effects,-offset min compare_size Running "custom:-ajax,-css,-dimensions,-effects,-offset" (custom) task Creating custom build... Running "build:dist/jquery.js:*:-ajax:-css:-dimensions:-effects:-offset" (build) task Excluding css (src/css.js) Excluding ajax (src/ajax.js) Excluding ajax/jsonp (src/ajax/jsonp.js) Excluding ajax/script (src/ajax/script.js) Excluding ajax/xhr (src/ajax/xhr.js) Excluding effects (src/effects.js) Excluding offset (src/offset.js) Excluding dimensions (src/dimensions.js) File 'dist/jquery.js' created. Running "min:dist/jquery.min.js" (min) task File "dist/jquery.min.js" created. Uncompressed size: 255395 bytes. Compressed size: 33506 bytes gzipped (92944 bytes minified). Running "compare_size:files" (compare_size) task Sizes - compared to master 255395 (-) dist/jquery.js 92944 (-) dist/jquery.min.js 33506 (-) dist/jquery.min.js.gz Done, without errors.
Notice the filesize hasn't changed. The files are also identical. This happens for any combination of parameters to custom command.
Change History (4)
comment:1 Changed 11 years ago by
Status: | new → open |
---|
comment:2 Changed 11 years ago by
Cc: | Rick Waldron added |
---|---|
Component: | unfiled → build |
Priority: | undecided → high |
comment:3 Changed 11 years ago by
Owner: | set to Rick Waldron |
---|---|
Status: | open → assigned |
I'll take a look now
comment:4 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Actually omit files that are specified. Fixes #11943
Signed-off-by: Rick Waldron <[email protected]…>
Changeset: bc9945a6a466e3431260615c2e663ca8848095e7
Note: See
TracTickets for help on using
tickets.
Originally submitted by benv in IRC but trac called him an evil spammer...
I also tested and verified.