Skip to content

Commit 086d1dd

Browse files
committed
couple more fixes
1 parent ee0d11b commit 086d1dd

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

packages/faro-rollup/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "0.0.14",
44
"description": "Upload a source map to the Faro source map API from a Rollup build pipeline",
55
"main": "dist/cjs/index.js",
6+
"types": "dist/cjs/index.d.ts",
67
"module": "dist/esm/index.mjs",
78
"repository": {
89
"type": "git",

packages/faro-rollup/src/test/rollup.config.mjs

+2
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ export const config =
1717
})
1818
]
1919
};
20+
21+
export default config;

packages/faro-webpack/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "0.0.14",
44
"description": "Upload a source map to the Faro source map API from a Webpack build pipeline ",
55
"main": "dist/cjs/index.js",
6+
"types": "dist/cjs/index.d.ts",
67
"module": "dist/esm/index.mjs",
78
"repository": {
89
"type": "git",

packages/faro-webpack/src/test/webpack.config.mjs

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ export const config = {
2020
bundleId: 'test'
2121
}),
2222
]
23-
};
23+
};
24+
25+
export default config;

0 commit comments

Comments
 (0)