Coder Social home page Coder Social logo

sebastian-software / prepublish Goto Github PK

View Code? Open in Web Editor NEW
21.0 6.0 3.0 1.6 MB

Simplifies the prepare step (bundling, transpiling, rebasing) during publishing NPM packages.

License: Apache License 2.0

JavaScript 98.15% CSS 1.85%
npm publish prepublish prepare rollup release babel rebase postcss

prepublish's Introduction

Prepublish
Sponsored by Version Downloads Build Status Unix Build Status Windows Dependencies

Prepublish is a solution for simplifying pre-publishing typical JavaScript projects for publishing to NPM.

Transpilers

Prepublish relies on the Babel Preset Edge for producing forward-looking optimistic code for your code base.

Output Targets

Prepublish produces exports of your sources depending on the entries of your packages package.json. It supports building for CommonJS and well as with ES Modules (ESM). Just add the relevant entries to the configuration.

  • CommonJS Output: main
  • ESM Output: module

Basic Example:

{
  "name": "mypackage",
  "main": "lib/main.cjs.js",
  "module": "lib/main.esm.js"
}

To offer separate NodeJS and Browser builds use one of the following keys for the browser bundle: browser or web. These bundles are always exported as ES Modules (ESM) as we have the assumption that they are bundled by another tool like Webpack or Rollup before usage.

Example:

{
  "name": "mypackage",
  "main": "lib/main.cjs.js",
  "module": "lib/main.esm.js",
  "browser": "lib/main.browser.js"
}

Input Entries

You might wonder how to produce a browser bundle from a different input. This is actually pretty easy. Your package just have to follow this convention.

The files are looked up for an order. The first match is being used.

Entries for NodeJS targets

  • src/node/public.js
  • src/node/export.js
  • src/node.js
  • src/server/public.js
  • src/server/export.js
  • src/server.js
  • src/server.js
  • src/public.js
  • src/export.js
  • src/index.js

Sources for the Browser targets

  • src/web/public.js
  • src/web/export.js
  • src/web.js
  • src/browser/public.js
  • src/browser/export.js
  • src/browser.js
  • src/client/public.js
  • src/client/export.js
  • src/client.js

Sources for binary targets

  • src/cli.js
  • src/binary.js
  • src/script.js

Targetting ES2015

You are able to export modules for either ES5 compatible environments or for more modern platforms, too.

Note: To use these non-standard bundle outputs requires some tweaks on the bundling phase of the application, too (e.g. in Webpack). This is because we are using non-standardized configuration keys in package.json. Typically just append either :es2015 or :modern to your normal targets:

  • CommonJS Output for NodeJS with ES2015 kept intact: main:es2015
  • ES Modules Output for NodeJS with ES2015 kept intact: module:es2015
  • Browser Output as ES Modules with ES2015 kept intact: browser:es2015

While es2015 is exactly a requirement for the client to have full ES2015 support, modern is even more modern adding things from ES2017 to the list like async/await. Modern is regularly updated inside our Babel Preset. It is by no way a never changing stable target.

Example Configuration:

{
  "name": "mypackage",
  "main": "lib/main-cjs.js",
  "module": "lib/main-esm.js",
  "browser": "lib/main-browser.js",
  "main:es2015": "lib/main.cjs.es2015.js",
  "module:es2015": "lib/main.esm.es2015.js",
  "browser:es2015": "lib/main.browser.es2015.js"
}

To make sense of all these new modules it would help to produce two different outputs. One for classic browsers and one for modern browsers. ES2015 enabled features are rapidly catching up in performance. Some features are pretty hard to rework for older browsers like Generators, Async/Await, or even Block Scope. Therefor we think there is no need for sending ES2015-capable clients the fully transpiled code down the wire. Keep in mind that you have to implement some basic client detection to send one or the other file to the matching client.

BTW: The modern builds make a lot of sense during development as it results in shorter transpiler runtimes.

Binary Output

Additionally prepublish is capable in generating for binary targets.

This generates a mypackage binary which is generated from the matching source file.

Binaries are generated from one of these source files:

  • src/cli.js
  • src/binary.js
  • src/script.js

Example Configuration:

{
  "name": "mypackage",
  "bin": {
    "mypackage": "bin/mypackage"
  }
}

Prepublish automatically choses the matching NodeJS version from your engines configuration:

"engines": {
  "node": ">=6.0.0",
  "npm": ">=5.0.0",
  "yarn": ">=1.0.0"
}

inside your package.json. This example configuration targets any version of NodeJS matching at least the v6 capabilities.

Related Content

Installation

NPM

$ npm install --save-dev prepublish

Yarn

$ yarn add --dev prepublish

Usage

Prepublish comes with a binary which can be called from within your scripts section in the package.json file.

"scripts": {
  "prepare": "prepublish"
}

There is also some amount of parameters you can use if the auto detection of your library does not work out correctly.

Usage
  $ prepublish

Options
  --entry-node       Entry file for NodeJS target [default = auto]
  --entry-web        Entry file for Browser target [default = auto]
  --entry-binary     Entry file for Binary target [default = auto]

  --output-folder    Configure the output folder [default = auto]

  -x, --minified     Enabled minification of output files
  -m, --sourcemap    Create a source map file during processing

  --target-modern    Binaries should target Node v8 LTS instead of Node v6 LTS.

  -v, --verbose      Verbose output mode [default = false]
  -q, --quiet        Quiet output mode [default = false]

License

Apache License; Version 2.0, January 2004

Copyright

Logo of Sebastian Software GmbH, Mainz, Germany

Copyright 2016-2018
Sebastian Software GmbH

prepublish's People

Contributors

nuba avatar swernerx avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Forkers

nuba isabella232

prepublish's Issues

Cannot find module '../build/Release/hash'

After running 'npm run prepare' I'm getting this error:

module.js:549
throw err;
^

Error: Cannot find module '../build/Release/hash'
at Function.Module._resolveFilename (module.js:547:15)
at Function.Module._load (module.js:474:25)
at Module.require (module.js:596:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (C:\dev\react-projects\shared\gw-style- tools\node_modules\xxhash\lib\xxhash.js:4:13)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
at Function.Module._load (module.js:497:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1

I just had a package.json, and a src folder with index.js, and then followed the readme file, and the Install section. I work on a Windows computer, with a PowerShell terminal.
Have u seen this error before? Does the package run well on Windows? Can u suggest a remedy?

Add watch mode to rebuild on change

With libraries like chokidar it should be relatively easy to add a development mode where we watch the source files for any changes to trigger a rebuild. This is especially useful when the project is linked into other projects during development e.g. because of using npm/yarn link or because some Lerna multi repository setup is used.

Rework code to use async-await instead

The current code base uses some series helpers and Promises. This leads to some pretty deeply structured code. I figure with the current solutions in place something based around async-await would be nicer.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.