rollup-starter-lib icon indicating copy to clipboard operation
rollup-starter-lib copied to clipboard

Bare-bones example of how to create a library using Rollup

Results 23 rollup-starter-lib issues
Sort by recently updated
recently updated
newest added

If I use lates rollup `3.17.2` (now is `1.29.0`), then I run `yarn run dev`, the error throws: ``` rollup-starter-lib [master] % yarn run build yarn run v1.22.19 $ rollup...

This PR includes two major updates: 1. **Upgraded Packages to Latest Versions** - All dependencies in the project have been upgraded to their latest versions to ensure better performance and...

Using degit clones without the git history and it is a better way to get started with an new library.

- Merge current master branch - Update dependencies to latest version - Moved rollup-plugin-* to @rollup/plugin-* - Switch TypeScript module configuration to 'ESNext' Fixes #66

Got directed to this repo from the [rollup website][1]. Trying to figure out how to use Rollup to ship a TypeScript React component library as ESM. It looks like the...

Hi, if your library depends on an external package, how can you build for ``? Bonus points if you can make it work as CJS, too. Here's our library ```js...

I notice in this example that it is referencing the umd build in the dist folder in the `browser` field of [package.json](https://github.com/rollup/rollup-starter-lib/blob/master/package.json#L6): ```json { "main": "dist/how-long-till-lunch.cjs.js", "module": "dist/how-long-till-lunch.esm.js", "browser": "dist/how-long-till-lunch.umd.js",...

First time coming across `tslib` in this project (thanks). From its [README](https://www.npmjs.com/package/tslib): > This is a runtime library for TypeScript that contains all of the TypeScript helper functions. > For...

In rollup.config.js output.name is howLongUntilLunch

Bump node-resolve to latest (Sorry, should have included this in https://github.com/rollup/rollup-starter-lib/pull/71)