This repository has been archived by the owner on Feb 6, 2018. It is now read-only.
-
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.
**1. The second argument now expects `config` instead of `options`.** Options by default now need specify in `config.defaults` instead of `options`. *Before:* ```js walk(['blocks'], { sheme: 'flat' }); ``` *After:* ```js var config = { defaults: { sheme: 'flat' } }; walk(['blocks'], config); ``` **2. Info about levels (scheme and naming) now need specify in `config.levels` instead of `levels` arguments.** The `levels` argument as `Array` no longer supported. *Before:* ```js walk([{ path: 'blocks', sheme: 'flat' }]); ``` *After:* ```js var config = { levels: { blocks: { sheme: 'flat' } } }; walk(['blocks'], config); ```
- Loading branch information
andrewblond
committed
Mar 28, 2015
1 parent
7f5c635
commit c5682ee
Showing
6 changed files
with
45 additions
and
59 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
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