We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
./install
node
1 parent 1a5084b commit c054802Copy full SHA for c054802
packages/remix-node/package.json
@@ -20,10 +20,14 @@
20
"import": "./dist/esm/index.mjs",
21
"require": "./dist/index.js"
22
},
23
+ "./install": {
24
+ "types": "./dist/install.d.ts",
25
+ "default": "./dist/install.js"
26
+ },
27
"./package.json": "./package.json"
28
29
"sideEffects": [
- "./install.js"
30
+ "./dist/install.js"
31
],
32
"scripts": {
33
"tsc": "tsc"
packages/remix-node/rollup.config.js
@@ -24,7 +24,7 @@ module.exports = function rollup() {
return [
{
external: (id) => isBareModuleId(id),
- input: `${SOURCE_DIR}/index.ts`,
+ input: [`${SOURCE_DIR}/index.ts`, `${SOURCE_DIR}/install.ts`],
output: {
banner: createBanner(name, version),
dir: OUTPUT_DIR,
0 commit comments