-
-
Notifications
You must be signed in to change notification settings - Fork 306
Comparing changes
Open a pull request
base repository: yeoman/generator
base: dae9aa7f2e38969f4542b44c3903a140c639c59b
head repository: yeoman/generator
compare: aad5fac0dfb6a9492cda445a4fbf11260170395b
Commits on Apr 30, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 0d97e24 - Browse repository at this point
Copy the full SHA 0d97e24View commit details
Commits on May 21, 2018
-
* Do not warn about nested callbacks in tests The tests are always deeper nested than regular files. So accept deeper nesting in these files. * Make the tests robust Currently the tests often fail because of timeouts. This increases the maximum timeout for these tests to prevent that from happening.
Configuration menu - View commit details
-
Copy full SHA for b4f1bfc - Browse repository at this point
Copy the full SHA b4f1bfcView commit details
Commits on Jun 30, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 314a52c - Browse repository at this point
Copy the full SHA 314a52cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 91b297c - Browse repository at this point
Copy the full SHA 91b297cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5fca282 - Browse repository at this point
Copy the full SHA 5fca282View commit details -
Configuration menu - View commit details
-
Copy full SHA for 29880bd - Browse repository at this point
Copy the full SHA 29880bdView commit details -
Breaking: Remove callbacks/promises from install APIs (Fix #1077)
And rename runInstall to scheduleInstallTask This work is done to remove a very common area where new Yeoman users get stuck. The install tasks do not actually run the installation, it only schedule the installation to run later in the run loop. This caused a lot of issues with users creating dead-loops in their generators, and it was really not an obvious error to fix. The proper way to handle actions after the installation process if to add a hook into the `end` phase.
Configuration menu - View commit details
-
Copy full SHA for 240a666 - Browse repository at this point
Copy the full SHA 240a666View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f3c6e8 - Browse repository at this point
Copy the full SHA 4f3c6e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for b1e62ec - Browse repository at this point
Copy the full SHA b1e62ecView commit details
Commits on Jul 1, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 682ea68 - Browse repository at this point
Copy the full SHA 682ea68View commit details
Commits on Jul 5, 2018
-
.gitattributes makes all .js files use LF as EOL. This change makes the tests pass on Windows.
Configuration menu - View commit details
-
Copy full SHA for 68d7da1 - Browse repository at this point
Copy the full SHA 68d7da1View commit details
Commits on Jul 24, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 74ada52 - Browse repository at this point
Copy the full SHA 74ada52View commit details -
Configuration menu - View commit details
-
Copy full SHA for db0e153 - Browse repository at this point
Copy the full SHA db0e153View commit details
Commits on Jul 28, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 93ad4e0 - Browse repository at this point
Copy the full SHA 93ad4e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 392fd5d - Browse repository at this point
Copy the full SHA 392fd5dView commit details
Commits on Jul 29, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 1cd1031 - Browse repository at this point
Copy the full SHA 1cd1031View commit details
Commits on Dec 22, 2018
-
Overload composeWith method to allow a generator class along its path (…
…#1099) * #composeWith generator class + path, ignore yarn.lock, add vscode launch config for debugging * ESLint autofix in pretest * Removed eslint autofix * composeWith(object...) better error info * Switched from yarn to npm ci to fix travis build eslint errors * Bumped eslint and prettier to fix bad syntax error inconsistent across Node versions
Configuration menu - View commit details
-
Copy full SHA for ac944f7 - Browse repository at this point
Copy the full SHA ac944f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1fd0d5f - Browse repository at this point
Copy the full SHA 1fd0d5fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8111562 - Browse repository at this point
Copy the full SHA 8111562View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bbeef0 - Browse repository at this point
Copy the full SHA 3bbeef0View commit details
Commits on May 7, 2019
-
Configuration menu - View commit details
-
Copy full SHA for f7f7755 - Browse repository at this point
Copy the full SHA f7f7755View commit details
Commits on May 8, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 715fd36 - Browse repository at this point
Copy the full SHA 715fd36View commit details -
Configuration menu - View commit details
-
Copy full SHA for cf6bcec - Browse repository at this point
Copy the full SHA cf6bcecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9daf15e - Browse repository at this point
Copy the full SHA 9daf15eView commit details -
Configuration menu - View commit details
-
Copy full SHA for f240d1a - Browse repository at this point
Copy the full SHA f240d1aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7d48623 - Browse repository at this point
Copy the full SHA 7d48623View commit details
Commits on May 28, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 0666f19 - Browse repository at this point
Copy the full SHA 0666f19View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12ca8b0 - Browse repository at this point
Copy the full SHA 12ca8b0View commit details
Commits on Sep 1, 2019
-
fix: mistake regular file that contains utf8 characters for binary fi…
…le (#1119) * fix: mistake regular file that contains utf8 characters for binary file WHen a regular file contains utf8 characters outside ascii charset, the `istextorbinary` would return wrong result. See the testcase in test/util.js. To solve this, we should use the `extension detection` instead. The author had explained [here](bevry/istextorbinary#9 (comment)) * chore: add .prettierrc
Configuration menu - View commit details
-
Copy full SHA for 345518b - Browse repository at this point
Copy the full SHA 345518bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 120a6cd - Browse repository at this point
Copy the full SHA 120a6cdView commit details
Commits on Sep 21, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 3eecec4 - Browse repository at this point
Copy the full SHA 3eecec4View commit details -
* Expose addMethod as queueMethod. * Add test for queueMethod
Configuration menu - View commit details
-
Copy full SHA for d18a384 - Browse repository at this point
Copy the full SHA d18a384View commit details
Commits on Sep 26, 2019
-
Implement abort option. (#1120)
This option when set to true, we will abort on first conflict. (used for testing reproducibility)
Configuration menu - View commit details
-
Copy full SHA for 7b05f03 - Browse repository at this point
Copy the full SHA 7b05f03View commit details -
Configuration menu - View commit details
-
Copy full SHA for ed138c6 - Browse repository at this point
Copy the full SHA ed138c6View commit details
Commits on Oct 15, 2019
-
Configuration menu - View commit details
-
Copy full SHA for fd0dc5e - Browse repository at this point
Copy the full SHA fd0dc5eView commit details -
Add support to array on composeWith (#1125)
* Add support to array on composeWith * Add composeWith workflow test. * Add test to verify if config set in one storage instance is updated on another.
Configuration menu - View commit details
-
Copy full SHA for 272920a - Browse repository at this point
Copy the full SHA 272920aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 23031e2 - Browse repository at this point
Copy the full SHA 23031e2View commit details -
Call getter binding the generator. (#1129)
This allows generator property getter's to use 'this' variable.
Configuration menu - View commit details
-
Copy full SHA for 4674176 - Browse repository at this point
Copy the full SHA 4674176View commit details
Commits on Oct 27, 2019
-
Support importing Generators with default exports (#1133)
* Support importing Generators with default exports This behaviour is likely as in the yeoman/environments Generator factory https://github.com/yeoman/environment/blob/v2.5.0/lib/environment.js#L425 * Use correct formatting
Configuration menu - View commit details
-
Copy full SHA for a2026cd - Browse repository at this point
Copy the full SHA a2026cdView commit details -
Set runningState on generator. (#1130)
* Set runningState on generator. * Make runningState cleanup Node.js < 10 compatible
Configuration menu - View commit details
-
Copy full SHA for ec7ef60 - Browse repository at this point
Copy the full SHA ec7ef60View commit details -
Migrate from detect-conflict to diff (JsDiff) (#1132)
* Change bail test to a constructor * Reimplement detect-conflict with diff * Add skipRegenerate option to conflicter. This will skip a rewrite on identical files. * Bail on create new file too. * Update conflicter.js * Update index.js
Configuration menu - View commit details
-
Copy full SHA for 1689eba - Browse repository at this point
Copy the full SHA 1689ebaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 27416e8 - Browse repository at this point
Copy the full SHA 27416e8View commit details
Commits on Nov 2, 2019
-
Bump mixin-deep from 1.3.1 to 1.3.2 (#1136)
Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2. - [Release notes](https://github.com/jonschlinkert/mixin-deep/releases) - [Commits](jonschlinkert/mixin-deep@1.3.1...1.3.2) Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 78b81de - Browse repository at this point
Copy the full SHA 78b81deView commit details -
Bump lodash from 4.17.11 to 4.17.13 (#1138)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.13. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.11...4.17.13) Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 9ea6b6d - Browse repository at this point
Copy the full SHA 9ea6b6dView commit details -
Bump lodash.merge from 4.6.1 to 4.6.2 (#1137)
Bumps [lodash.merge](https://github.com/lodash/lodash) from 4.6.1 to 4.6.2. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/commits) Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 95fcbd6 - Browse repository at this point
Copy the full SHA 95fcbd6View commit details -
Bump eslint-utils from 1.3.1 to 1.4.3 (#1139)
Bumps [eslint-utils](https://github.com/mysticatea/eslint-utils) from 1.3.1 to 1.4.3. - [Release notes](https://github.com/mysticatea/eslint-utils/releases) - [Commits](mysticatea/eslint-utils@v1.3.1...v1.4.3) Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 866cea1 - Browse repository at this point
Copy the full SHA 866cea1View commit details
Commits on Dec 15, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 14651ca - Browse repository at this point
Copy the full SHA 14651caView commit details -
Configuration menu - View commit details
-
Copy full SHA for b9ea81a - Browse repository at this point
Copy the full SHA b9ea81aView commit details
Commits on Dec 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 99f0360 - Browse repository at this point
Copy the full SHA 99f0360View commit details
Commits on Dec 24, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 4c2a675 - Browse repository at this point
Copy the full SHA 4c2a675View commit details
There are no files selected for viewing
This file was deleted.