-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: build both fetch-mock and core simultaneously
- Loading branch information
1 parent
db8129d
commit f47a4a2
Showing
10 changed files
with
53 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { nodeResolve } from '@rollup/plugin-node-resolve'; | ||
import commonjs from '@rollup/plugin-commonjs'; | ||
import { writeFile, mkdir } from 'fs/promises'; | ||
export default { | ||
input: './src/index.js', | ||
output: { | ||
dir: './dist', | ||
entryFileNames: 'commonjs.js', | ||
format: 'commonjs', | ||
}, | ||
plugins: [ | ||
nodeResolve({ preferBuiltins: false }), | ||
commonjs(), | ||
// sourcemaps(), | ||
// builtins(), | ||
// globals(), | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"type": "module"} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { nodeResolve } from '@rollup/plugin-node-resolve'; | ||
import commonjs from '@rollup/plugin-commonjs'; | ||
import { writeFile, mkdir } from 'fs/promises'; | ||
export default { | ||
input: './src/index.js', | ||
output: { | ||
dir: './dist', | ||
entryFileNames: 'commonjs.js', | ||
format: 'commonjs', | ||
}, | ||
plugins: [ | ||
nodeResolve({ preferBuiltins: false }), | ||
commonjs(), | ||
// sourcemaps(), | ||
// builtins(), | ||
// globals(), | ||
], | ||
}; |
This file was deleted.
Oops, something went wrong.