mirror of
https://github.com/facebook/react.git
synced 2026-02-25 13:13:03 +00:00
This adds rollup to the runtime and adds a new plugin to add the license banner + inject the `"use no memo"` directive. We need to inject it there as rollup currently strips out unknown directives during bundling.
17 lines
317 B
JSON
17 lines
317 B
JSON
{
|
|
"name": "react-forget-runtime",
|
|
"version": "0.0.1",
|
|
"description": "Runtime for React Forget",
|
|
"license": "MIT",
|
|
"files": [
|
|
"src"
|
|
],
|
|
"dependencies": {
|
|
"react": "^18.2.0"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && rollup --config --bundleConfigAsCjs",
|
|
"test": "echo 'no tests'"
|
|
}
|
|
}
|