forked from angular/angular-cli
-
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.
fix(@angular/cli): convert
before
option in .npmrc
to Date
Previously, the `before` option in the npmrc was not converted properly to a date. See: https://docs.npmjs.com/cli/v8/using-npm/config#before Closes angular#24685
- Loading branch information
1 parent
6d0eb65
commit 5e2c158
Showing
2 changed files
with
12 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { writeFile } from '../../../utils/fs'; | ||
import { ng } from '../../../utils/process'; | ||
|
||
export default async function () { | ||
// Works with before option | ||
await writeFile('.npmrc', `before=${new Date().toISOString()}`); | ||
await ng('add', '@angular/pwa', '--skip-confirmation'); | ||
} |