型チェックにフローを使用しているReactコンポーネントのnpmパッケージがあります。
コンポーネントのユーザーがフロータイプにアクセスできると便利です。ただし、現時点では、すべての型情報を削除するBabelを使用してコードをコンパイルしています。
私のプロジェクト構造は次のとおりです。
|
|- flowdecls
myTypes.js
| -components
- Component1
Component1.js
| - lib
- Component1.js (compiled using Babel)
- Component1.js.flow (created using flow-copy-source)
たとえば、myTypes.js
のタイプの1つは
declare type DataItemIconType = {
iconElement: React$Element<React$ElementType>,
color?: string,
hoverColor?: string
}
Component1
で使用します。たとえば、Component1
の小道具の1つは
iconList : Array<DataItemIconType>
ライブラリのいくつかのバージョンのReactコンポーネントをフローなしのnpmパッケージとして既に公開しており、コンポーネントが広く使用されていますが、フローサポートを提供したいのですが。
最近の記事では、この記事で指定されているflow-copy-sourceを使用してみました( Flowを使用したJavaScriptモジュールの作成および公開 )しかし、私のライブラリのユーザーはまだ私のタイプにアクセスできません。
ライブラリでComponent1
を使用しているユーザーがDataItemIconType
などの型を利用できるようにするにはどうすればよいですか?
package.json
{
"name": "@company/react-common-components-build-template",
"version": "0.6.0",
"main": "./lib/index.js",
"private": true,
"engines": {
"node": ">=4.0.0"
},
"files": [
"lib"
],
"description": "Common component library",
"peerDependencies": {
"react": "16.10.0",
"react-dom": "16.10.0",
"prop-types": "15.7.2"
},
"dependencies": {
"@material-ui/core": "4.9.5",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "3.0.0-alpha.30",
"@material-ui/styles": "4.9.0",
"lodash": "4.17.15"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.6.0",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-object-assign": "7.2.0",
"@babel/plugin-transform-react-constant-elements": "7.6.0",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.4.2",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"@svgr/webpack": "4.3.2",
"@TypeScript-eslint/eslint-plugin": "^2.2.0",
"@TypeScript-eslint/parser": "^2.2.0",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-named-asset-import": "0.3.4",
"babel-plugin-react-remove-properties": "0.3.0",
"babel-preset-react-app": "9.0.2",
"camelcase": "^5.2.0",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"chokidar": "1.6.1",
"classnames": "2.2.6",
"cpx": "1.5.0",
"cross-env": "6.0.3",
"css-loader": "2.1.1",
"dotenv": "6.2.0",
"dotenv-expand": "5.1.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"enzyme-to-json": "3.4.3",
"eslint": "6.6.0",
"eslint-config-react-app": "5.0.2",
"eslint-loader": "3.0.0",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-flowtype-errors": "4.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "3.0.1",
"flow-bin": "0.113.0",
"flow-copy-source": "^2.0.9",
"flow-typed": "^2.6.2",
"fs-extra": "7.0.1",
"glob-gitignore": "1.0.14",
"hard-source-webpack-plugin": "^0.13.1",
"highlight": "^0.2.4",
"highlight.js": "^9.10.0",
"html-webpack-plugin": "4.0.0-beta.5",
"husky": "3.0.8",
"identity-obj-proxy": "3.0.0",
"is-wsl": "^1.1.0",
"jest": "24.9.0",
"jest-environment-jsdom-fourteen": "1.0.1",
"jest-enzyme": "^7.1.2",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "0.4.0",
"mini-css-extract-plugin": "0.9.0",
"npm-run-all": "4.0.2",
"optimize-css-assets-webpack-plugin": "5.0.3",
"pnp-webpack-plugin": "1.5.0",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-normalize": "7.0.1",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "4.0.1",
"prettier": "1.19.1",
"react": "16.10.0",
"react-addons-test-utils": "15.5.1",
"react-app-polyfill": "^1.0.3",
"react-dev-utils": "10.2.0",
"react-docgen": "3.0.0",
"react-dom": "16.10.0",
"react-highlight": "^0.12.0",
"react-test-renderer": "16.10.0",
"resolve": "1.15.0",
"resolve-url-loader": "3.1.1",
"sass-loader": "8.0.2",
"semver": "6.3.0",
"style-loader": "1.0.0",
"terser-webpack-plugin": "2.3.4",
"ts-pnp": "1.1.5",
"url-loader": "2.3.0",
"webpack": "4.41.5",
"webpack-dev-server": "3.10.2",
"webpack-manifest-plugin": "2.2.0",
"workbox-webpack-plugin": "4.3.1"
},
"scripts": {
"prestart": "npm run gen:docs",
"start": "npm-run-all --parallel start:docs gen:docs-watch",
"start:docs": "node scripts/start.js",
"gen:docs": "node scripts/generateComponentData.js",
"gen:docs-watch": "npm run gen:docs -- --watch",
"build:docs": "node scripts/build.js",
"test": "node scripts/test.js",
"predeploy:docs": "npm run build:docs",
"flow": "flow",
"lint": "eslint src --debug",
"lint:flow-typed": "flow-typed install --ignoreDeps dev",
"build:images": "cpx \"./src/components/images/**/*.*\" ./lib/images",
"prebuild:common-components-lib": "rimraf lib",
"build:common-components-lib": "npm-run-all --parallel build:components build:utils build:images build:copy-files build:copyflowsource",
"build:components": "cross-env NODE_ENV=production BABEL_ENV=cjs babel ./src/components --out-dir ./lib/ --ignore spec.js",
"build:utils": "cross-env NODE_ENV=production BABEL_ENV=cjs babel src/components/utils --out-dir ./lib/utils --ignore spec.js",
"build:copyflowsource": "flow-copy-source ./src/components ./lib ",
"build:copy-files": "node scripts/copyBuildFiles.js",
"prettier:changed": "node ./scripts/prettier.js",
"prettier:all": "node ./scripts/prettier.js write",
"format-check": "prettier --check \"./src/**/*.{js,test.js,spec.js}\""
},
"publishConfig": {
"registry": "http://srv-ie-nexus/repository/npm-hosted/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"roots": [
"<rootDir>/src/components"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"setupFiles": [
"react-app-polyfill/jsdom"
],
"setupFilesAfterEnv": [
"<rootDir>/jest-test-setup.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
],
"testEnvironment": "jest-environment-jsdom-fourteen",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"modulePaths": [],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}
フローは、存在する場合、隣接するmodule.js.flow
declarations files を自動的に検索します。
たとえば、dist/index.js
を指すメインフィールドがある場合、dist/index.js.flow
をパッケージの出力に追加すると、ユーザーの言語サーバーによって取得されます。
フローでこれを解決する方法はまだないと思います。しかし、私はあなたと同じ船に乗っていました。
コンシューマーがパッケージタイプを使用できない理由のほとんどは、パッケージをインストールしたときに.*/flow-typed/*
にあるものではなく、.*/node_modules/@company/react-common-components-build-template
からグローバルタイプを読み取るためです。 package.json設定とは何の関係もありません。
型付きでパッケージを出荷するには、2つのオプションがあります。
それらをsrc
コードの一部として配置してインポートできるようにするか、つまり、タイプがグローバルではなくなり、ソースコード内で使用するタイプをインポートする必要があります。しかし、これは消費者もそうできることを意味します。
または、それらをflowdecls
に保管して、公開されていることを確認してください。いったんそうなると、ユーザーは型定義をflow-typed
ディレクトリにコピーする必要があります。これにより、プロジェクト内でもグローバルになります。
次のようなものをREADMEに追加して、ユーザーに洞察を与えることができます。
react-common-components-build-template
は、内部的にグローバル型定義も使用します。これを利用したい場合は、/node_modules/@company/react-common-components-build-template/flowdecls/myTypes.js
をローカルのフロータイプのディレクトリにコピーできます。バージョンのアップグレードごとに1回コピーを実行して、npmスクリプトを介して実行できる最新の変更と同期を保つことをお勧めします。
"scripts": {
// ...
"postinstall": "cp /node_modules/@company/react-common-components-build-template/flowdecls/myTypes.js flow-typed"
},
2番目のオプションは実際に私が行ったものであり、上記は私のリポジトリにあるものです。ちなみに、コピープロセスが発生したときにflow-typed
が何に使用されているのか不思議に思わないように、dirの名前をreact-common-components-build-template.js
に、typesファイルの名前をmyTypes.js
のような名前に変更することをお勧めします。
これもこのプロセスの一部として非常に便利なパッケージのようです- https://www.npmjs.com/package/gen-flow-files