diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-30 18:41:33 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-30 16:26:53 -0800 |
commit | b7178e170466dc550e23e9b08dce9d07d9b4974c (patch) | |
tree | 4c47d00cd3ea709fed5d4c768168868ddc96186b | |
parent | 38463848885bee38c2d509bbcd2ed453702d9f9f (diff) |
Upgrade Prettier to support BigInt syntax in TS
-rw-r--r-- | js/compiler.ts | 4 | ||||
-rw-r--r-- | js/url_search_params.ts | 4 | ||||
-rw-r--r-- | package.json | 4 | ||||
m--------- | third_party | 0 |
4 files changed, 6 insertions, 6 deletions
diff --git a/js/compiler.ts b/js/compiler.ts index 9ba018932..c9fa4611c 100644 --- a/js/compiler.ts +++ b/js/compiler.ts @@ -180,8 +180,8 @@ export class Compiler return this._moduleMetaDataMap.has(fileName) ? this._moduleMetaDataMap.get(fileName) : fileName.startsWith(ASSETS) - ? this._resolveModule(fileName, "") - : undefined; + ? this._resolveModule(fileName, "") + : undefined; } /** Given a `moduleSpecifier` and `containingFile` retrieve the cached diff --git a/js/url_search_params.ts b/js/url_search_params.ts index cf005fc16..228c36956 100644 --- a/js/url_search_params.ts +++ b/js/url_search_params.ts @@ -117,8 +117,8 @@ export class URLSearchParams { * searchParams.sort(); */ sort(): void { - this.params = this.params.sort( - (a, b) => (a[0] === b[0] ? 0 : a[0] > b[0] ? 1 : -1) + this.params = this.params.sort((a, b) => + a[0] === b[0] ? 0 : a[0] > b[0] ? 1 : -1 ); } diff --git a/package.json b/package.json index ef21b5427..df6ae9cfa 100644 --- a/package.json +++ b/package.json @@ -3,13 +3,13 @@ "devDependencies": { "@types/base64-js": "^1.2.5", "@types/flatbuffers": "^1.9.0", - "@types/prettier": "^1.13.2", + "@types/prettier": "=1.15.3", "@types/source-map-support": "^0.4.1", "@types/text-encoding": "0.0.33", "base64-js": "^1.3.0", "flatbuffers": "^1.9.0", "magic-string": "^0.22.5", - "prettier": "^1.14.0", + "prettier": "=1.15.3", "rollup": "0.67.0", "rollup-plugin-alias": "^1.4.0", "rollup-plugin-analyzer": "^2.1.0", diff --git a/third_party b/third_party -Subproject 69028eefdc6534683eb1263be0115df679dcaed +Subproject e94296a27cdaeb96bfd86e499162764409e503b |