0.14.0 • Published 6 months ago

gulp-esbuild v0.14.0

Weekly downloads
788
License
MIT
Repository
github
Last release
6 months ago

downloads per month

gulp-esbuild

A gulp plugin for the esbuild bundler.

There are two exports available: gulpEsbuild and createGulpEsbuild. In most cases you should use the gulpEsbuild export. Use the createGuipEsbuild export if you want to enable the esbuild's incremental build. The esbuild's incremental build is used with the gulp's watching files API and allows you to rebuild only changed parts of code (example);

const {createGulpEsbuild} = require('gulp-esbuild')
const gulpEsbuild = createGulpEsbuild({
	incremental: true, // enables the esbuild's incremental build
})

⚠️ Notice ⚠️

Esbuild doesn't fully support working with the virtual files which gulp send when you use: src(...).pipe(gulpEsbuild(...)). We found workaround using some tricks, but one limitation still remains. Every file you send via src(...) must exist in the file system. Its contents are not important, since they will be taken from the virtual file. But existence in the file system is required.

Installation

npm install gulp-esbuild esbuild

or

yarn add gulp-esbuild esbuild

Examples

build example

gulpfile.js

const {
    src,
    dest,
} = require('gulp')
const gulpEsbuild = require('gulp-esbuild')

function build() {
    return src('./index.tsx')
        .pipe(gulpEsbuild({
            outfile: 'bundle.js',
            bundle: true,
            loader: {
                '.tsx': 'tsx',
            },
        }))
        .pipe(dest('./dist'))
}

exports.build = build

package.json

...
"scripts": {
    "build": "gulp build"
}
...

command line

npm run build

watch mode example

gulpfile.js

const {
    src,
    dest,
    watch,
} = require('gulp')
const {createGulpEsbuild} = require('gulp-esbuild')
const gulpEsbuild = createGulpEsbuild({ incremental: true })

function build() {
    return src('./src/index.js')
        .pipe(gulpEsbuild({
            outfile: 'outfile.js',
            bundle: true,
        }))
        .pipe(dest('./dist'))
}

function watchTask() {
    watch('./src/index.js', build)
}

exports.watch = watchTask

package.json

...
"scripts": {
    "watch": "gulp watch"
}
...

command line

npm run watch

More examples here

Plugin arguments

NameTypeDefault
sourcemapboolean\|'linked'\|'inline'\|'external'\|'both'
sourceRootstring
sourcesContentboolean
legalComments'none'\|'inline'\|'eof'\|'linked'\|'external'
format'iife'\|'cjs'\|'esm'
globalNamestring
targetstring
supportedobject
manglePropsRegExp
reservePropsRegExp
mangleQuotedboolean
mangleCacheobject
drop'console'\|'debugger'
dropLabelsarray
minifyboolean
minifyWhitespaceboolean
minifyIdentifiersboolean
minifySyntaxboolean
lineLimitnumber
charset'ascii'\|'utf8'
treeShakingboolean
ignoreAnnotationsboolean
jsx'transform'\|'preserve'\|'automatic'
jsxFactorystring
jsxFragmentstring
jsxImportSourcestring
jsxDevboolean
jsxSideEffectsboolean
defineobject
purearray
keepNamesboolean
bannerobject
footerobject
colorboolean
logLevel'verbose'\|'debug'\|'info'\|'warning'\|'error'\|'silent''silent'
logLimitnumber
logOverrideobject
tsconfigRawstring|object
bundleboolean
splittingboolean
preserveSymlinksboolean
outfilestring
metafileboolean
metafileNamestring'metafile.json'
outdirstring
outbasestring
platform'browser'\|'node'\|'neutral'
externalarray
packages'external'
aliasobject
loaderobject
resolveExtensionsarray
mainFieldsarray
conditionsarray
tsconfigstring
outExtensionobject
publicPathstring
entryNamesstring
chunkNamesstring
assetNamesstring
injectarray
pluginsarray
0.13.0

7 months ago

0.14.0

6 months ago

0.12.1

1 year ago

0.12.0

2 years ago

0.11.2

2 years ago

0.11.1

2 years ago

0.10.6

3 years ago

0.10.7

3 years ago

0.10.8

2 years ago

0.11.0

2 years ago

0.10.4

3 years ago

0.10.5

3 years ago

0.10.3

3 years ago

0.10.1

3 years ago

0.10.2

3 years ago

0.10.0

3 years ago

0.9.2

4 years ago

0.9.1

4 years ago

0.9.0

4 years ago

0.8.7

4 years ago

0.8.6

4 years ago

0.8.5

4 years ago

0.8.4

4 years ago

0.8.3

4 years ago

0.8.1

4 years ago

0.8.2

4 years ago

0.8.0

4 years ago

0.7.6

4 years ago

0.7.5

4 years ago

0.7.7

4 years ago

0.7.4

4 years ago

0.7.3

4 years ago

0.7.2

4 years ago

0.7.1

4 years ago

0.7.0

4 years ago

0.6.4

4 years ago

0.6.3

4 years ago

0.6.2

4 years ago

0.6.1

4 years ago

0.6.0

4 years ago

0.5.5

4 years ago

0.5.4

4 years ago

0.5.3

4 years ago

0.5.2

4 years ago

0.5.1

4 years ago

0.5.0

4 years ago

0.4.5

4 years ago

0.4.4

4 years ago

0.4.3

4 years ago

0.4.2

4 years ago

0.4.1

4 years ago

0.4.0

4 years ago

0.3.22

4 years ago

0.3.21

4 years ago

0.3.20

4 years ago

0.3.19

4 years ago

0.3.18

4 years ago

0.3.17

4 years ago

0.3.16

4 years ago

0.3.15

4 years ago

0.3.14

4 years ago

0.3.13

4 years ago

0.3.12

4 years ago

0.3.11

4 years ago

0.3.10

4 years ago

0.3.9

4 years ago

0.3.8

4 years ago

0.3.7

4 years ago

0.3.6

4 years ago

0.3.5

5 years ago

0.3.4

5 years ago

0.3.3

5 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.15

5 years ago

0.2.14

5 years ago

0.2.13

5 years ago

0.2.12

5 years ago

0.2.11

5 years ago

0.2.10

5 years ago

0.2.9

5 years ago

0.2.8

5 years ago

0.2.7

5 years ago

0.2.6

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.31

5 years ago

0.1.32

5 years ago

0.1.30

5 years ago

0.1.29

5 years ago

0.1.28

5 years ago

0.1.27

5 years ago

0.1.26

5 years ago

0.1.25

5 years ago

0.1.24

5 years ago

0.1.22

5 years ago

0.1.23

5 years ago

0.1.21

5 years ago

0.1.20

5 years ago

0.1.19

5 years ago

0.1.18

5 years ago

0.1.17

5 years ago

0.1.16

5 years ago

0.1.15

5 years ago

0.1.14

5 years ago

0.1.13

5 years ago

0.1.12

5 years ago

0.1.11

5 years ago

0.1.10

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.21

5 years ago

0.0.20

5 years ago

0.0.19

5 years ago

0.0.18

5 years ago

0.0.16

5 years ago

0.0.17

5 years ago

0.0.15

5 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.3

5 years ago

0.0.4

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago