Andrew Abramov

Results 57 issues of Andrew Abramov

backlog
prio:normal

Now we can create artifact with JS object. ```js const tartifacts = require('tartifacts'); const artifacts = [ { dest: 'artifact.tar.gz', includes: 'sources/**', excludes: 'sources/exlib/**' tar: true, gzip: { level: 1...

We should to provide an opportunity save stat of files. By default should be turned off because this affects performance. **Example** ``` js const tartifacts = require('tartifacts'); const artifacts =...

In CLI mode `tartifacts` should log warn messages about broken symlinks and mismatching patterns. By API ``` js const tartifacts = require('tartifacts'); tartifacts({ dest: 'dir', includes: ['no-file.ext', 'broken.symlink'] }) .then({...

Need add `dryRun` option to run fake copy or fake build of tarball. It may be necessary to check patterns. ``` js const tartifacts = require('tartifacts'); tartifacts({ dest: 'dest', includes:...

If we build several artifacts with similar patterns, scan will be repeat for each patterns. ``` js const tartifacts = require('tartifacts'); tartifacts([ { dest: 'artifact-1', includes: 'sources/**' // first scan...

For example, you can use `bgMagenta` color.

enhancement

Need to find a way to check that `bem-walk` does not contain memory leaks. This will be important if we release caching mech #44 #50.

The event will emit when will provide information on an entity with each file in each level. Example of file system: ``` bash common.blocks/ └── button/ ├── button.css # (1)...

priority:normal
ready
beginner