Skip to content

Commit 0293f3e

Browse files
4.0.0-alpha.1
1 parent 785c080 commit 0293f3e

11 files changed

+16
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [4.0.0-alpha.1] - 2020-01-23
11+
1012
This release focuses on improving performance and maintainability. These have been achieved by separating virtual path logic into a separate package.
1113

1214
### Added

docs/api/gulp-bundle-assets.bundleorchastrator._constructor_.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## BundleOrchastrator.(constructor)
66

7-
Finish docblock
7+
Constructs a new instance of the `BundleOrchastrator` class
88

99
<b>Signature:</b>
1010

@@ -18,5 +18,5 @@ constructor(config: Config, joiner: Bundlers, resultsCallback?: ResultsCallback)
1818
| --- | --- | --- |
1919
| config | <code>Config</code> | Raw (but valid) configuration file used for bundle resolution. |
2020
| joiner | <code>Bundlers</code> | Object capable of generating the Transform streams needed for generation of final bundles. |
21-
| resultsCallback | <code>ResultsCallback</code> | TODO |
21+
| resultsCallback | <code>ResultsCallback</code> | Callback invoked once all bundles generated. |
2222

docs/api/gulp-bundle-assets.bundleorchastrator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export declare class BundleOrchastrator extends Transform
1616
1717
| Constructor | Modifiers | Description |
1818
| --- | --- | --- |
19-
| [(constructor)(config, joiner, resultsCallback)](./gulp-bundle-assets.bundleorchastrator._constructor_.md) | | Finish docblock |
19+
| [(constructor)(config, joiner, resultsCallback)](./gulp-bundle-assets.bundleorchastrator._constructor_.md) | | Constructs a new instance of the <code>BundleOrchastrator</code> class |
2020
2121
## Methods
2222

docs/api/gulp-bundle-assets.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
| Function | Description |
2222
| --- | --- |
23-
| [MergeRawConfigs(rawConfigs)](./gulp-bundle-assets.mergerawconfigs.md) | Finish docblock Merges a collection of configurations. No validation is conducted, it is expected that provided inputs are all valid.<code>bundle-&gt;(BundleName)-&gt;options-&gt;sprinkle-&gt;onCollision = (replace&#124;merge&#124;ignore&#124;error)</code> may be used to modify treatment of collided bundles. |
23+
| [MergeRawConfigs(rawConfigs)](./gulp-bundle-assets.mergerawconfigs.md) | Merges a collection of configurations. No validation is conducted, it is expected that provided inputs are all valid.<code>bundle-&gt;(BundleName)-&gt;options-&gt;sprinkle-&gt;onCollision = (replace&#124;merge&#124;ignore&#124;error)</code> may be used to modify treatment of collided bundles. |
2424
| [ValidateRawConfig(config)](./gulp-bundle-assets.validaterawconfig.md) | Throws an exception if the provided raw config contains invalid data. |
2525

2626
## Interfaces
@@ -33,7 +33,7 @@
3333
| [BundleStreamFactory](./gulp-bundle-assets.bundlestreamfactory.md) | A function that returns a stream that will be used to bundle assets. |
3434
| [Config](./gulp-bundle-assets.config.md) | Root object of raw configuration. |
3535
| [Options](./gulp-bundle-assets.options.md) | Represents an asset bundles root options node. |
36-
| [Results](./gulp-bundle-assets.results.md) | Finish docblock |
37-
| [ResultsCallback](./gulp-bundle-assets.resultscallback.md) | Finish docblock |
36+
| [Results](./gulp-bundle-assets.results.md) | Bundler results data shape. |
37+
| [ResultsCallback](./gulp-bundle-assets.resultscallback.md) | Bundler results callback function interface. |
3838
| [SprinkleOptions](./gulp-bundle-assets.sprinkleoptions.md) | Options relevent to UserFrosting's Sprinkle system. |
3939

docs/api/gulp-bundle-assets.mergerawconfigs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## MergeRawConfigs() function
66

7-
Finish docblock Merges a collection of configurations. No validation is conducted, it is expected that provided inputs are all valid.
7+
Merges a collection of configurations. No validation is conducted, it is expected that provided inputs are all valid.
88

99
`bundle->(BundleName)->options->sprinkle->onCollision = (replace|merge|ignore|error)` may be used to modify treatment of collided bundles.
1010

@@ -18,7 +18,7 @@ export default function MergeConfigs(rawConfigs: Config[]): Config;
1818

1919
| Parameter | Type | Description |
2020
| --- | --- | --- |
21-
| rawConfigs | <code>Config[]</code> | TODO |
21+
| rawConfigs | <code>Config[]</code> | Raw (untransformed) configurations to merge. |
2222

2323
<b>Returns:</b>
2424

docs/api/gulp-bundle-assets.results.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Results interface
66

7-
Finish docblock
7+
Bundler results data shape.
88

99
<b>Signature:</b>
1010

docs/api/gulp-bundle-assets.resultscallback.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## ResultsCallback interface
66

7-
Finish docblock
7+
Bundler results callback function interface.
88

99
<b>Signature:</b>
1010

docs/api/gulp-bundle-assets.sprinkleoptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ export interface SprinkleOptions
1616

1717
| Property | Type | Description |
1818
| --- | --- | --- |
19-
| [onCollision](./gulp-bundle-assets.sprinkleoptions.oncollision.md) | <code>CollisionReactions &#124; string</code> | How a bundle collision should be handled when bundles are being merged. |
19+
| [onCollision](./gulp-bundle-assets.sprinkleoptions.oncollision.md) | <code>keyof typeof CollisionReactions</code> | How a bundle collision should be handled when bundles are being merged. |
2020

docs/api/gulp-bundle-assets.sprinkleoptions.oncollision.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ How a bundle collision should be handled when bundles are being merged.
99
<b>Signature:</b>
1010

1111
```typescript
12-
onCollision?: CollisionReactions | string;
12+
onCollision?: keyof typeof CollisionReactions;
1313
```

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)