Incremental flag in config
See original GitHub issueI run backstop with something like that:
const backstop = require('backstopjs');
backstop('reference', {config:'custom/backstop/config.json'});
I don’t want to remove all reference images. There is a incremental param flag to do that backstop reference --i
but I don’t know how to do this with config.json file. The param --filter
is similar.
Thanks for your help
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Incremental flag syntax
This topic describes the syntax of the --incrementalUpdate flag. ... The DP CLI flag syntax for an Incremental update operation is one of...
Read more >incremental - TSConfig Option - TypeScript
TSConfig. incremental ... All the configuration options for a project. Classes. How to provide types to JavaScript ES6 classes. Made with ♥ in...
Read more >Regarding new "incremental" flag from TS 3.4 #913 - GitHub
The sole purpose of incremental flag, as I see it, is to speed up cold builds (webpack watch is covered by ts-loader already)...
Read more >Incremental Regeneration - Default Configuration - Jekyll
Incremental regeneration can be enabled via the --incremental flag ( -I for short) from the command-line or by setting incremental: true in your...
Read more >What is the meaning of incremental in tsconfig.json?
Enable incremental compilation by reading/writing information from prior compilations to a file on disk. This file is controlled by the ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Reference has been deprecated and is only supported as a utility function. It will clean the directory and start fresh.
The recommended flow is
backstop test
backstop approve
Repeat.@garris filter and incremental are part of config.args look here but the makeConfig.js only merge args from command params. So I’m pretty sure that there is no way to add config.args.[filter | incremental] in config file. It’s right? Is there any way to do it?