Skip to content

Commit b20e0cc

Browse files
committed
publish 0.14.7 to npm
1 parent 8e551a7 commit b20e0cc

File tree

22 files changed

+42
-42
lines changed

22 files changed

+42
-42
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.14.7
44

55
* Cross-module inlining of TypeScript `enum` constants ([#128](https://github.com/evanw/esbuild/issues/128))
66

@@ -19,9 +19,9 @@
1919

2020
To demonstrate the performance improvement, I compared the performance of the TypeScript compiler built by bundling the TypeScript compiler source code with esbuild before and after this change. The speed of the compiler was measured by using it to type check a small TypeScript code base. Here are the results:
2121

22-
| | `tsc` | w/ esbuild 0.14.6 | w/ esbuild 0.14.7 |
23-
|------|-------|-------------------|-------------------|
24-
| Time | 2.96s | 3.45s | 2.95s |
22+
| | `tsc` | with esbuild 0.14.6 | with esbuild 0.14.7 |
23+
|------|-------|---------------------|---------------------|
24+
| Time | 2.96s | 3.45s | 2.95s |
2525

2626
As you can see, enum inlining gives around a 15% speedup, which puts the esbuild-bundled version at the same speed as the offical TypeScript compiler build (the `tsc` column)!
2727

cmd/esbuild/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package main
22

3-
const esbuildVersion = "0.14.6"
3+
const esbuildVersion = "0.14.7"

npm/esbuild-android-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-android-arm64",
3-
"version": "0.14.6",
3+
"version": "0.14.7",
44
"description": "The Android ARM 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

npm/esbuild-darwin-64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-darwin-64",
3-
"version": "0.14.6",
3+
"version": "0.14.7",
44
"description": "The macOS 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

npm/esbuild-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-darwin-arm64",
3-
"version": "0.14.6",
3+
"version": "0.14.7",
44
"description": "The macOS ARM 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

npm/esbuild-freebsd-64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-freebsd-64",
3-
"version": "0.14.6",
3+
"version": "0.14.7",
44
"description": "The FreeBSD 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

npm/esbuild-freebsd-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-freebsd-arm64",
3-
"version": "0.14.6",
3+
"version": "0.14.7",
44
"description": "The FreeBSD ARM 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

npm/esbuild-linux-32/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-32",
3-
"version": "0.14.6",
3+
"version": "0.14.7",
44
"description": "The Linux 32-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

npm/esbuild-linux-64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-64",
3-
"version": "0.14.6",
3+
"version": "0.14.7",
44
"description": "The Linux 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

npm/esbuild-linux-arm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-arm",
3-
"version": "0.14.6",
3+
"version": "0.14.7",
44
"description": "The Linux ARM binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

0 commit comments

Comments
 (0)