Skip to content

Commit

Permalink
fix outdated pipe package
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Clark committed Dec 8, 2023
1 parent d8c5dd1 commit 35dfbc3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
File renamed without changes.
12 changes: 7 additions & 5 deletions packages/function-pipe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
"name": "just-pipe",
"version": "1.0.0",
"description": "Pass a value through a pipeline of functions",
"main": "index.js",
"module": "index.mjs",
"type": "module",
"exports": {
".": {
"require": "./index.js",
"default": "./index.mjs"
}
"types": "./index.d.ts",
"require": "./index.cjs",
"import": "./index.mjs"
},
"./package.json": "./package.json"
},
"main": "index.cjs",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down
3 changes: 3 additions & 0 deletions packages/function-pipe/rollup.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const createRollupConfig = require('../../config/createRollupConfig');

module.exports = createRollupConfig(__dirname);

0 comments on commit 35dfbc3

Please sign in to comment.