🌐 AI搜索 & 代理 主页
Skip to content
Closed
Changes from 10 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
b677541
Deferred: produce and consume standard thenables
jaubourg Sep 10, 2014
e1303a3
Deferred: Run the Promises/A+ test suite
mgol Sep 11, 2014
96a4d94
Deferred: Make Deferred more Promises/A+ compliant
mgol Sep 12, 2014
2a693bf
Deferred: refactoring and more tests passing
jaubourg Sep 23, 2014
bd15dde
Deferred: makes xxxWith methods low level again
jaubourg Sep 23, 2014
d0e5c04
Deferred: Now 100% Promise/A compliant
jaubourg Sep 24, 2014
02204a9
Deferred: Use standard Promise polyfill for tests
jaubourg Sep 24, 2014
54ce603
Deferred: Style Guide compliance
jaubourg Sep 24, 2014
a8578d5
Deferred: naming variables makes frenchmen cry
jaubourg Sep 24, 2014
b410b15
README: update the Homebrew site address
mgol Jan 3, 2015
66e1b6b
Build: Remove dates from copyright notice
agcolom Jan 1, 2015
97cf528
Event: Normalize mouse event properties in drag events
araghava Dec 20, 2014
d30c482
Misc: Mac OS is now OS X, thanks @xfq
dmethvin Jan 7, 2015
83b038f
Ajax: Fix cross-domain detection test for non-default port
victor-homyakov Dec 19, 2014
c34ed46
Release: Remove copying of jquery-latest files
dmethvin Jan 7, 2015
a3779bc
Docs: Clarify custom build instructions
dmethvin Jan 7, 2015
b50e0f2
Docs: Fix README uppercase
dmethvin Jan 9, 2015
0c9d018
Build: Specify valid components for commit messages
gibson042 Dec 7, 2014
0d829f0
Callbacks: No object starts out locked
gibson042 Jan 2, 2015
32bf917
Callbacks: Don't abort execution on .lock()
gibson042 Jan 4, 2015
4cbf02d
Callbacks: Reduce size
gibson042 Jan 4, 2015
53aa87f
Core: Standardize indexOf comparisons
gibson042 Dec 31, 2014
bb928bd
Build: Rearrange grunt/npm tasks into a build/dist/test pattern
gibson042 Dec 30, 2014
89ce0af
Ajax: $.post and $.get can now take an options object
togakangaroo Jan 6, 2015
0ea8c32
Core: Remove deprecated context and selector properties
dmethvin Jan 8, 2015
a4133ff
Build: Sanctify the component name status of Wrap
dmethvin Jan 12, 2015
534f130
Core: add support to tag-hyphenated elements
LeonardoBraga Jan 4, 2015
85ffc6d
Manipulation: add support to tag-hyphenated elements
LeonardoBraga Jan 5, 2015
74ae544
Offset: simplify jQuery#offsetParent method
markelog Jan 13, 2015
d7e5fce
Event: HTML5 drop events inherit from MouseEvent
dmethvin Jan 14, 2015
72b8923
Deferred: produce and consume standard thenables
jaubourg Sep 10, 2014
58ce896
Deferred: Run the Promises/A+ test suite
mgol Sep 11, 2014
da12cab
Deferred: Make Deferred more Promises/A+ compliant
mgol Sep 12, 2014
7267cb9
Deferred: refactoring and more tests passing
jaubourg Sep 23, 2014
a405474
Deferred: makes xxxWith methods low level again
jaubourg Sep 23, 2014
b450ce8
Deferred: Now 100% Promise/A compliant
jaubourg Sep 24, 2014
005b7c1
Deferred: Use standard Promise polyfill for tests
jaubourg Sep 24, 2014
1f83e4a
Deferred: Style Guide compliance
jaubourg Sep 24, 2014
0b008c3
Deferred: naming variables makes frenchmen cry
jaubourg Sep 24, 2014
0eabf11
Deferred: One day, Julian will understand git... one day
jaubourg Jan 19, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,18 @@ module.exports = function( grunt ) {
});
});

grunt.registerTask( "promises-aplus-tests", function() {
var done = this.async();
spawn( "node", [
"./node_modules/.bin/promises-aplus-tests",
"./promises-aplus-adapter.js"
], {
stdio: "inherit"
}).on( "close", function( code ) {
done( code === 0 );
});
});

// Short list as a high frequency watch task
grunt.registerTask( "dev", [ "build:*:*", "lint", "uglify", "dist:*" ] );

Expand Down