crx-build

0.1.2 • Public • Published

Crx-build

Install

npm install -g crx-build

Usage

import crxBuild from "crx-build";
crxBuild.build();

crx-build use esbuild: An extremely fast JavaScript bundler under the hood.
All esbuild configuration and work.
Pass esbuild config at crxBuild.esConfig();
example :

import crxBuild from "crx-build";
crxBuild.esConfig({
	plugins: [esplugins],
	sourcemap: true,
});
crxBuild.build();

API

crxBuild.build()
Build all extension's page

crxBuild.runTimeScripts = [{js:[jsfiles],css:[css files]}]
If you have injected js files or css files, pass here before build call.

crxZip(version)
update version number in build manifest and create zip of build directory.

crx-build bundle everything on manifest e.g popup,background,
contents and scripts,web-accessible-resources.
If you can more than this, you can use this api

jsbuild( [jsfiles], "root-directory", esbuild config object )
jsfiles: Array of js files which you want to bundle.
esbuild-config (optional).

HTMLBuild(htmlfilepath,esbuild config object)
htmlfilepath: html file relative to root directory
e.g /popup/index.html esbuild-config (optional).

Related

path-fixxer - Add npm packages in chrome extension
crx-hotload - Add HMR in your chrome extension

License

stack-trace is licensed under the MIT license.

Package Sidebar

Install

npm i crx-build

Weekly Downloads

2

Version

0.1.2

License

MIT

Unpacked Size

13 kB

Total Files

11

Last publish

Collaborators

  • anilkumarum