-
-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement .gulprc support #69
Comments
Support for this in Liftoff was just published as 2.3.0 @sttk would you like to implement it for gulp? |
@phated Yes, I'd like to implement it. I want to use key chain style for gulprc as below, but it is not popular as a configuration file. Can I use this style and the module customerizer for this? cli.flags.cwd = 'path/of/cwd';
cli.flags.logLevel = 4;
colors.tasks.tree.task.name = s => chalk.bold(chalk.blue(s));
colors.tasks.tree.task.description = chalk.black; |
@sttk I don't think the configuration file needs to be that complex. I also think that attempting the implementation with the most simple thing first is the correct approach (so don't start with colors). I think the easiest thing to support would be a top level {
"description": "My sample description for gulpfile"
} It could also be a node module that used |
@phated I got it. And I agree that we should start with the most simple configuration.
For autoloading
|
@phated Can I change |
Oh, you are right that |
I got it. I'll implement so. |
@phated I determined that the configuration file name is
|
And I implemented the first and second check items in my repository. sttk/gulp-cli#support_gulprc ( Comparing changes ) Please point out about the features, the implementations, etc. |
@phated I've implemented all features above. |
@sttk please submit a PR, I think some of the stuff might be added complexity but I'd like to see it all together first. |
Implement through use of gulpjs/liftoff#8 which has outstanding PR at gulpjs/liftoff#67
The text was updated successfully, but these errors were encountered: