mirror of
https://github.com/zhigang1992/esbuild.git
synced 2026-01-12 22:46:54 +08:00
publish 0.7.3 to npm
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# Changelog
|
||||
|
||||
## Unreleased
|
||||
## 0.7.3
|
||||
|
||||
* Fix compile error due to missing `unix.SYS_IOCTL` in the latest `golang.org/x/sys` ([#396](https://github.com/evanw/esbuild/pull/396))
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
package main
|
||||
|
||||
const esbuildVersion = "0.7.2"
|
||||
const esbuildVersion = "0.7.3"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild-darwin-64",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "The macOS 64-bit binary for esbuild, a JavaScript bundler.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild-freebsd-64",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "The FreeBSD 64-bit binary for esbuild, a JavaScript bundler.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild-freebsd-arm64",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "The FreeBSD ARM 64-bit binary for esbuild, a JavaScript bundler.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild-linux-32",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "The Linux 32-bit binary for esbuild, a JavaScript bundler.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild-linux-64",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "The Linux 64-bit binary for esbuild, a JavaScript bundler.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild-linux-arm64",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "The Linux ARM 64-bit binary for esbuild, a JavaScript bundler.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild-linux-ppc64le",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "The Linux PowerPC 64-bit Little Endian binary for esbuild, a JavaScript bundler.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild-wasm",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "The cross-platform WebAssembly binary for esbuild, a JavaScript bundler.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild-windows-32",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "The Windows 32-bit binary for esbuild, a JavaScript bundler.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild-windows-64",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "The Windows 64-bit binary for esbuild, a JavaScript bundler.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "esbuild",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"description": "An extremely fast JavaScript bundler and minifier.",
|
||||
"repository": "https://github.com/evanw/esbuild",
|
||||
"scripts": {
|
||||
|
||||
@@ -5,7 +5,7 @@ const fs = require('fs')
|
||||
|
||||
const repoDir = path.dirname(__dirname)
|
||||
const npmDir = path.join(repoDir, 'npm', 'esbuild')
|
||||
const version = require(path.join(npmDir, 'package.json')).version
|
||||
const version = fs.readFileSync(path.join(repoDir, 'version.txt'), 'utf8').trim()
|
||||
|
||||
function buildNativeLib(esbuildPath) {
|
||||
const libDir = path.join(npmDir, 'lib')
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.7.2
|
||||
0.7.3
|
||||
|
||||
Reference in New Issue
Block a user