-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: add
never-cache
and command
options
- `--never-cache`, `-n` option allows to specify patterns to match files that will never be included in the cache. Even if the files were in the cache already they will be ignored if the file matches the provided pattern. Multiple patterns can be specified by specifying this parameter multiple times. - `command` option can be used to pass the cli command used to execute persistify. If that command changes then the cache will be also be ignored
- Loading branch information
royriojas
committed
Sep 22, 2015
1 parent
17cfb9d
commit b81307d
Showing
9 changed files
with
174 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
var abc = require('./dep2'); | ||
console.log('hello world!!!!'); | ||
|
||
console.log('another world'); | ||
abc.showMetal(require('./deps/dep-3')); | ||
|
||
abc.on('update', (x) => x * 2); | ||
abc.on('update', (x) => x * 2); | ||
|
||
var demoM = require('./deps/demo.m.less'); | ||
|
||
console.log(demoM.t('some-class')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
module.exports = { | ||
showMetal: function (dep) { | ||
console.log(dep); | ||
console.log('hello world'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@import 'module1.less'; | ||
|
||
.some-class { | ||
.someMixin(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.someMixin() { | ||
color: red; | ||
background: yellow; | ||
font-size: 20px; | ||
line-height: 40px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.