Skip to content

Commit 2432b86

Browse files
alan-agius4vikerman
authored andcommitted
build: update fast-json-stable-stringify to 2.1
1 parent f29eeb9 commit 2432b86

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@
9696
"@types/clean-css": "^4.2.1",
9797
"@types/copy-webpack-plugin": "^4.4.1",
9898
"@types/express": "^4.16.0",
99-
"@types/fast-json-stable-stringify": "^2.0.0",
10099
"@types/find-cache-dir": "^2.0.0",
101100
"@types/glob": "^7.0.0",
102101
"@types/inquirer": "^0.0.44",
@@ -118,6 +117,7 @@
118117
"common-tags": "^1.8.0",
119118
"conventional-changelog": "^1.1.0",
120119
"conventional-commits-parser": "^3.0.0",
120+
"fast-json-stable-stringify": "2.1.0",
121121
"gh-got": "^8.0.1",
122122
"git-raw-commits": "^2.0.0",
123123
"husky": "^1.3.1",

packages/angular_devkit/core/BUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ ts_library(
3333
# The attribute below is needed in g3 to turn off strict typechecking
3434
# strict_checks = False,
3535
deps = [
36-
"@npm//@types/fast-json-stable-stringify",
3736
"@npm//@types/node",
3837
"@npm//ajv",
38+
"@npm//fast-json-stable-stringify",
3939
"@npm//magic-string",
4040
"@npm//rxjs",
4141
"@npm//source-map",

packages/angular_devkit/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"dependencies": {
1111
"ajv": "6.10.2",
12-
"fast-json-stable-stringify": "2.0.0",
12+
"fast-json-stable-stringify": "2.1.0",
1313
"magic-string": "0.25.4",
1414
"rxjs": "6.5.3",
1515
"source-map": "0.7.3"

packages/angular_devkit/core/src/experimental/jobs/strategy.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,20 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.io/license
77
*/
8-
import * as stableStringify from 'fast-json-stable-stringify';
98
import { Observable, Subject, concat, of } from 'rxjs';
109
import { finalize, ignoreElements, share, shareReplay, tap } from 'rxjs/operators';
1110
import { JsonValue } from '../../json';
1211
import {
1312
JobDescription,
1413
JobHandler,
15-
JobHandlerContext, JobInboundMessage,
14+
JobHandlerContext,
15+
JobInboundMessage,
1616
JobOutboundMessage,
1717
JobOutboundMessageKind,
1818
} from './api';
1919

20+
import stableStringify = require('fast-json-stable-stringify');
21+
2022
export namespace strategy {
2123

2224
export type JobStrategy<

packages/angular_devkit/core/src/workspace/json/utilities.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.io/license
77
*/
8-
import * as stableStringify from 'fast-json-stable-stringify';
98
import {
109
JsonAstArray,
1110
JsonAstKeyValue,
@@ -15,6 +14,8 @@ import {
1514
JsonValue,
1615
} from '../../json';
1716

17+
import stableStringify = require('fast-json-stable-stringify');
18+
1819
interface CacheEntry {
1920
value?: JsonValue;
2021
node?: JsonAstNode;

yarn.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -1182,11 +1182,6 @@
11821182
"@types/express-serve-static-core" "*"
11831183
"@types/serve-static" "*"
11841184

1185-
"@types/fast-json-stable-stringify@^2.0.0":
1186-
version "2.0.0"
1187-
resolved "https://registry.yarnpkg.com/@types/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#40363bb847cb86b2c2e1599f1398d11e8329c921"
1188-
integrity sha512-mky/O83TXmGY39P1H9YbUpjV6l6voRYlufqfFCvel8l1phuy8HRjdWc1rrPuN53ITBJlbyMSV6z3niOySO5pgQ==
1189-
11901185
"@types/find-cache-dir@^2.0.0":
11911186
version "2.0.0"
11921187
resolved "https://registry.yarnpkg.com/@types/find-cache-dir/-/find-cache-dir-2.0.0.tgz#6ee79b947b8e51ce8c565fc8278822b2605609db"
@@ -4573,7 +4568,12 @@ fast-deep-equal@^2.0.1:
45734568
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
45744569
integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
45754570

4576-
fast-json-stable-stringify@2.0.0, fast-json-stable-stringify@^2.0.0:
4571+
fast-json-stable-stringify@2.1.0:
4572+
version "2.1.0"
4573+
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
4574+
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
4575+
4576+
fast-json-stable-stringify@^2.0.0:
45774577
version "2.0.0"
45784578
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
45794579
integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I=

0 commit comments

Comments
 (0)