chore(packages): use temporary scope name

This commit is contained in:
moklick
2022-08-29 12:08:13 +02:00
parent 8e30df2e82
commit f113cf4e19
30 changed files with 77 additions and 95 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "reactflow",
"version": "11.0.0-next.0",
"version": "11.0.0-next.2",
"description": "A highly customizable React library for building node-based editors and interactive flow charts",
"keywords": [
"react",
@@ -28,10 +28,10 @@
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"@react-flow/background": "workspace:*",
"@react-flow/controls": "workspace:*",
"@react-flow/core": "workspace:*",
"@react-flow/minimap": "workspace:*"
"@rctflw/background": "workspace:*",
"@rctflw/controls": "workspace:*",
"@rctflw/core": "workspace:*",
"@rctflw/minimap": "workspace:*"
},
"peerDependencies": {
"react": ">=18",

View File

@@ -1,8 +1,8 @@
export * from '@react-flow/core';
export * from '@react-flow/minimap';
export * from '@react-flow/controls';
export * from '@react-flow/background';
export * from '@rctflw/core';
export * from '@rctflw/minimap';
export * from '@rctflw/controls';
export * from '@rctflw/background';
import { ReactFlow } from '@react-flow/core';
import { ReactFlow } from '@rctflw/core';
export default ReactFlow;