[READ-ONLY] Mirror of https://github.com/danielroe/siroc. Zero-config build tooling for Node
bundle node package rollup typescript
0

Configure Feed

Select the types of activity you want to include in your feed.

chore!: add explicit exports

BREAKING CHANGE: this currently includes all published files but changes to `exports` can potentially cause import issues

Daniel Roe (Mar 8, 2021, 1:15 PM UTC) 2881914c 0294b088

+10 -4
+10 -4
package.json
··· 13 13 ], 14 14 "repository": "nuxt-contrib/siroc", 15 15 "license": "MIT", 16 - "sideEffects": false, 17 - "main": "dist/index.js", 18 - "module": "dist/index.es.js", 19 - "types": "dist/index.d.ts", 16 + "exports": { 17 + ".": { 18 + "require": "./dist/index.js", 19 + "import": "./dist/index.es.js" 20 + }, 21 + "./package.json": "./package.json" 22 + }, 23 + "main": "./dist/index.js", 24 + "module": "./dist/index.es.js", 25 + "types": "./dist/index.d.ts", 20 26 "bin": { 21 27 "siroc": "bin/cli.js", 22 28 "siroc-runner": "bin/runtime.js"