aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/lib
Commit message (Collapse)AuthorAgeFilesLines
* Build: Fix the Windows buildMichał Gołębiowski-Owczarek2019-12-021-0/+24
| | | | | | | This commit gets rid of rollup-plugin-hypothetical in favor of a simpler inline Rollup plugin that fits our need and is compatible with Windows. Fixes gh-4548 Closes gh-4549
* Build: Drop cross-spawn, use child_process.spawn shell optionMichał Gołębiowski-Owczarek2017-09-251-4/+6
|
* Build: ESLint detailsOleg Gaidarenko2016-06-111-3/+1
| | | | | | Use eslint pragmas, fix new errors, etc Closes gh-3148
* Build: switch from win-spawn to cross-spawnMichał Gołębiowski2016-01-271-1/+1
| | | | | | | The win-spawn package is deprecated. Refs gh-2877 Refs 67c96a59f5af9e8404b3f904028e1c730d647498
* Core: Test all factory use cases from intro.jsMichał Gołębiowski2015-04-271-0/+16
There is a lot of logic in intro.js; now we test four cases: 1. (implicitly, via QUnit tests) A real browser with window being the global 2. Browserify where there are both global & window variables. 3. Node with jsdom where window is passed manually to the jQuery factory. 4. Pure Node with incorrect window passed; jQuery should throw then. Previously the second & fourth case was not tested and the third was tested in a way that interfered with the main test environment. We now also test if in the Browserify case we're not creating a jQuery global by default. Fixes gh-2181 Closes gh-2234