-
Notifications
You must be signed in to change notification settings - Fork 6
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 #30 from kyubisation/develop
v2.0.0-beta.0
- Loading branch information
Showing
111 changed files
with
121,403 additions
and
3,692 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 |
---|---|---|
|
@@ -16,5 +16,7 @@ deploy: | |
email: "[email protected]" | ||
api_key: "$NPM_TOKEN" | ||
skip_cleanup: true | ||
# TODO: REMOVE FOR STABLE RELEASE | ||
tag: next | ||
on: | ||
tags: true |
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,23 @@ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/api-extractor.schema.json", | ||
"compiler" : { | ||
"configType": "tsconfig", | ||
"rootFolder": "." | ||
}, | ||
"project": { | ||
"entryPointSourceFile": "typings/src/index.d.ts" | ||
}, | ||
"apiReviewFile": { | ||
"enabled": false | ||
}, | ||
"apiJsonFile": { | ||
"enabled": true | ||
}, | ||
"dtsRollup": { | ||
"enabled": true, | ||
"publishFolder": "." | ||
}, | ||
"tsdocMetadata": { | ||
"enabled": false | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
...n/angular-server-side-configuration.applyandsaverecursivelyoptions.directory.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[Home](./index) > [angular-server-side-configuration](./angular-server-side-configuration.md) > [ApplyAndSaveRecursivelyOptions](./angular-server-side-configuration.applyandsaverecursivelyoptions.md) > [directory](./angular-server-side-configuration.applyandsaverecursivelyoptions.directory.md) | ||
|
||
## ApplyAndSaveRecursivelyOptions.directory property | ||
|
||
The root directory from which to search files. (Defaults to instance directory.) | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
directory?: string; | ||
``` |
11 changes: 11 additions & 0 deletions
11
...angular-server-side-configuration.applyandsaverecursivelyoptions.filepattern.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[Home](./index) > [angular-server-side-configuration](./angular-server-side-configuration.md) > [ApplyAndSaveRecursivelyOptions](./angular-server-side-configuration.applyandsaverecursivelyoptions.md) > [filePattern](./angular-server-side-configuration.applyandsaverecursivelyoptions.filepattern.md) | ||
|
||
## ApplyAndSaveRecursivelyOptions.filePattern property | ||
|
||
The file pattern in which the configuration should be inserted (Defaults to /index.html$/). | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
filePattern?: RegExp; | ||
``` |
19 changes: 19 additions & 0 deletions
19
documentation/angular-server-side-configuration.applyandsaverecursivelyoptions.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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[Home](./index) > [angular-server-side-configuration](./angular-server-side-configuration.md) > [ApplyAndSaveRecursivelyOptions](./angular-server-side-configuration.applyandsaverecursivelyoptions.md) | ||
|
||
## ApplyAndSaveRecursivelyOptions interface | ||
|
||
Options for applyAndSaveRecursively | ||
|
||
<b>Signature:</b> | ||
|
||
```typescript | ||
export interface ApplyAndSaveRecursivelyOptions | ||
``` | ||
|
||
## Properties | ||
|
||
| Property | Type | Description | | ||
| --- | --- | --- | | ||
| [directory](./angular-server-side-configuration.applyandsaverecursivelyoptions.directory.md) | `string` | The root directory from which to search files. (Defaults to instance directory.) | | ||
| [filePattern](./angular-server-side-configuration.applyandsaverecursivelyoptions.filepattern.md) | `RegExp` | The file pattern in which the configuration should be inserted (Defaults to /index.html$/). | | ||
|
Oops, something went wrong.