forked from dowjones/gulp-bundle-assets
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from userfrosting/develop
Gap in error logging, spelling fixes
- Loading branch information
Showing
19 changed files
with
204 additions
and
71 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,84 @@ | ||
name: Continuous Integration | ||
on: | ||
# Every push | ||
push: | ||
schedule: | ||
# Every Monday and Thursday at 12PM UTC | ||
- cron: '0 12 * * 1,4' | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest, macos-latest, windows-latest ] | ||
node-version: [ 10.x, 12.x, 13.x ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm ci | ||
- run: ./node_modules/.bin/nyc --reporter=lcovonly npm test | ||
- uses: codecov/codecov-action@v1 | ||
with: | ||
token: ${{ secrets.CODECOV_UPLOAD_TOKEN }} | ||
{ | ||
"name": "Continuous Integration", | ||
"on": { | ||
# Every push | ||
"push": {}, | ||
"schedule": [ | ||
{ | ||
# Every Monday and Thursday at 12PM UTC | ||
"cron": "0 12 * * 1,4" | ||
} | ||
] | ||
}, | ||
"jobs": { | ||
"test": { | ||
"strategy": { | ||
"matrix": { | ||
"os": [ | ||
"ubuntu-latest", | ||
"macos-latest", | ||
"windows-latest" | ||
], | ||
"node-version": [ | ||
"10.x", | ||
"12.x", | ||
"13.x" | ||
] | ||
} | ||
}, | ||
"runs-on": "${{ matrix.os }}", | ||
"steps": [ | ||
{ | ||
"name": "Checkout", | ||
"uses": "actions/checkout@v1" | ||
}, | ||
{ | ||
"name": "Setup node", | ||
"uses": "actions/setup-node@v1", | ||
"with": { | ||
"node-version": "${{ matrix.node-version }}" | ||
} | ||
}, | ||
{ | ||
"name": "Install dependencies", | ||
"run": "npm ci" | ||
}, | ||
{ | ||
"name": "Run tests", | ||
"run": "./node_modules/.bin/nyc --reporter=lcovonly npm test" | ||
}, | ||
{ | ||
"name": "Push coverage to Codecov", | ||
"uses": "codecov/codecov-action@v1", | ||
"with": { | ||
"token": "${{ secrets.CODECOV_UPLOAD_TOKEN }}" | ||
} | ||
} | ||
] | ||
}, | ||
"release-readiness": { | ||
"runs-on": "ubuntu-latest", | ||
"steps": [ | ||
{ | ||
"name": "Checkout", | ||
"uses": "actions/checkout@v1" | ||
}, | ||
{ | ||
"name": "Setup node", | ||
"uses": "actions/setup-node@v1", | ||
"with": { | ||
"node-version": "13.x" | ||
} | ||
}, | ||
{ | ||
"name": "Install cspell", | ||
"run": "npm i -g cspell" | ||
}, | ||
{ | ||
"name": "Check spelling", | ||
"run": "cspell '**'" | ||
} | ||
] | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/v5.0.1-alpha.3/cspell.schema.json", | ||
"version": "0.1", | ||
"language": "en-US", | ||
"words": [ | ||
"narthollis", | ||
"Zaleski", | ||
"gregorymaertens", | ||
"Mele", | ||
"Sherland", | ||
"Soares", | ||
"jcarrivick", | ||
"bytecode", | ||
"backported" | ||
], | ||
"ignoreWords": [ | ||
"userfrosting", | ||
"errlop", | ||
"preversion", | ||
"postversion", | ||
"codecov", | ||
"vpath", | ||
"gulpplugin", | ||
"gulpfile" | ||
], | ||
"ignorePaths": [ | ||
"cspell.json", | ||
"package-lock.json", | ||
"api-extractor.json", | ||
"docs/api/", | ||
"dist/", | ||
"temp/" | ||
] | ||
} |
6 changes: 3 additions & 3 deletions
6
...ssets.bundleorchastrator._constructor_.md → ...ssets.bundleorchestrator._constructor_.md
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
4 changes: 2 additions & 2 deletions
4
...undle-assets.bundleorchastrator._flush.md → ...undle-assets.bundleorchestrator._flush.md
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
4 changes: 2 additions & 2 deletions
4
...e-assets.bundleorchastrator._transform.md → ...e-assets.bundleorchestrator._transform.md
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
14 changes: 7 additions & 7 deletions
14
.../gulp-bundle-assets.bundleorchastrator.md → .../gulp-bundle-assets.bundleorchestrator.md
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,27 +1,27 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [@userfrosting/gulp-bundle-assets](./gulp-bundle-assets.md) > [BundleOrchastrator](./gulp-bundle-assets.bundleorchastrator.md) | ||
[Home](./index.md) > [@userfrosting/gulp-bundle-assets](./gulp-bundle-assets.md) > [BundleOrchestrator](./gulp-bundle-assets.bundleorchestrator.md) | ||
|
||
## BundleOrchastrator class | ||
## BundleOrchestrator class | ||
|
||
Orchastrates bundling. | ||
Orchestrates bundling. | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export declare class BundleOrchastrator extends Transform | ||
export declare class BundleOrchestrator extends Transform | ||
``` | ||
## Constructors | ||
| Constructor | Modifiers | Description | | ||
| --- | --- | --- | | ||
| [(constructor)(config, joiner, resultsCallback)](./gulp-bundle-assets.bundleorchastrator._constructor_.md) | | Constructs a new instance of the <code>BundleOrchastrator</code> class | | ||
| [(constructor)(config, joiner, resultsCallback)](./gulp-bundle-assets.bundleorchestrator._constructor_.md) | | Constructs a new instance of the <code>BundleOrchestrator</code> class | | ||
## Methods | ||
| Method | Modifiers | Description | | ||
| --- | --- | --- | | ||
| [\_flush(callback)](./gulp-bundle-assets.bundleorchastrator._flush.md) | | | | ||
| [\_transform(chunk, encoding, callback)](./gulp-bundle-assets.bundleorchastrator._transform.md) | | Collects copies of applicable files to later bundle. | | ||
| [\_flush(callback)](./gulp-bundle-assets.bundleorchestrator._flush.md) | | | | ||
| [\_transform(chunk, encoding, callback)](./gulp-bundle-assets.bundleorchestrator._transform.md) | | Collects copies of applicable files to later bundle. | | ||
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
Oops, something went wrong.