Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Silic0nS0ldier committed Jun 20, 2020
1 parent 5915d91 commit a4c6017
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.0.1] - 2020-06-20

### Changed
- Formalized error for when a previously resolved file fails to be loaded.

Expand Down
16 changes: 8 additions & 8 deletions docs/api/vinyl-fs-vpath.iconfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ export interface IConfig

| Property | Type | Description |
| --- | --- | --- |
| [base](./vinyl-fs-vpath.iconfig.base.md) | <code>string</code> | Specifies the folder relative to the cwd This is used to determine the file names when saving in .dest() Default: cwd |
| [cwd](./vinyl-fs-vpath.iconfig.cwd.md) | <code>string</code> | Current working directory. Default: process.cwd() |
| [globs](./vinyl-fs-vpath.iconfig.globs.md) | <code>string &#124; string[]</code> | Input file matchers. |
| [logger](./vinyl-fs-vpath.iconfig.logger.md) | <code>Logger</code> | Optional logger. Use this to debug issues and trace behaviours. Adheres to interface defined in ts-log package. |
| [pathMappings](./vinyl-fs-vpath.iconfig.pathmappings.md) | <code>IPathMapper[]</code> | Virtual path mappings. Collision resolution uses the last mapping to select the file. Internally mapping occurs on absolute path strings, conversion and normalisation is performed automatically. Resolution is \*not\* recursive. |
| [removeBOM](./vinyl-fs-vpath.iconfig.removebom.md) | <code>boolean</code> | Causes the BOM to be removed on UTF-8 encoded files. Set to false if you need the BOM for some reason. Default: true |
| [since](./vinyl-fs-vpath.iconfig.since.md) | <code>Date &#124; number</code> | Only find files that have been modified since the time specified |
| [sourcemaps](./vinyl-fs-vpath.iconfig.sourcemaps.md) | <code>boolean</code> | Setting this to true will enable sourcemaps. Default: false |
| [base](./vinyl-fs-vpath.iconfig.base.md) | string | Specifies the folder relative to the cwd This is used to determine the file names when saving in .dest() Default: cwd |
| [cwd](./vinyl-fs-vpath.iconfig.cwd.md) | string | Current working directory. Default: process.cwd() |
| [globs](./vinyl-fs-vpath.iconfig.globs.md) | string \| string\[\] | Input file matchers. |
| [logger](./vinyl-fs-vpath.iconfig.logger.md) | Logger | Optional logger. Use this to debug issues and trace behaviours. Adheres to interface defined in ts-log package. |
| [pathMappings](./vinyl-fs-vpath.iconfig.pathmappings.md) | [IPathMapper](./vinyl-fs-vpath.ipathmapper.md)<!-- -->\[\] | Virtual path mappings. Collision resolution uses the last mapping to select the file. Internally mapping occurs on absolute path strings, conversion and normalisation is performed automatically. Resolution is \*not\* recursive. |
| [removeBOM](./vinyl-fs-vpath.iconfig.removebom.md) | boolean | Causes the BOM to be removed on UTF-8 encoded files. Set to false if you need the BOM for some reason. Default: true |
| [since](./vinyl-fs-vpath.iconfig.since.md) | Date \| number | Only find files that have been modified since the time specified |
| [sourcemaps](./vinyl-fs-vpath.iconfig.sourcemaps.md) | boolean | Setting this to true will enable sourcemaps. Default: false |

4 changes: 2 additions & 2 deletions docs/api/vinyl-fs-vpath.ipathmapper.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ export interface IPathMapper

| Property | Type | Description |
| --- | --- | --- |
| [match](./vinyl-fs-vpath.ipathmapper.match.md) | <code>string</code> | Path prefix to match (relative to cwd). |
| [replace](./vinyl-fs-vpath.ipathmapper.replace.md) | <code>string</code> | Value to replace matched portion of path with. |
| [match](./vinyl-fs-vpath.ipathmapper.match.md) | string | Path prefix to match (relative to cwd). |
| [replace](./vinyl-fs-vpath.ipathmapper.replace.md) | string | Value to replace matched portion of path with. |

4 changes: 2 additions & 2 deletions docs/api/vinyl-fs-vpath.src.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ export declare function src(config: IConfig): Readable;

| Parameter | Type | Description |
| --- | --- | --- |
| config | <code>IConfig</code> | Source configuration. |
| config | [IConfig](./vinyl-fs-vpath.iconfig.md) | Source configuration. |

<b>Returns:</b>

`Readable`
Readable

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json.schemastore.org/package.json",
"name": "@userfrosting/vinyl-fs-vpath",
"version": "1.0.0",
"version": "1.0.1",
"description": "Vinyl source for file system with support for virtual paths.",
"funding": "https://opencollective.com/userfrosting",
"main": "./dist/index.js",
Expand Down

0 comments on commit a4c6017

Please sign in to comment.