hedelib v1.0.52
项目运行需同时打开两个终端
第一个:
npm start # or yarn start第二个:
Storybook
Run inside another terminal:
yarn storybook例子
Then run the example inside another:
cd example
npm i # or yarn to install dependencies
npm start # or yarn startTo do a one-off build, use npm run build or yarn build.
To run tests, use npm test or yarn test.
配置
Code quality is set up for you with prettier, husky, and lint-staged. Adjust the respective fields in package.json accordingly.
测试
Jest tests are set up to run with npm test or yarn test.
Bundle 分析
Calculates the real cost of your library using size-limit with npm run size and visulize it with npm run analyze.
文件结构
/example
index.html
index.tsx # test your component here in a demo app
package.json
tsconfig.json
/src
index.tsx # EDIT THIS
/test
blah.test.tsx # EDIT THIS
/stories
Thing.stories.tsx # EDIT THIS
/.storybook
main.js
preview.js
.gitignore
package.json
README.md # EDIT THIS
tsconfig.jsonRollup
TSDX uses Rollup as a bundler and generates multiple rollup configs for various module formats and build settings. See Optimizations for details.
TypeScript
tsconfig.json is set up to interpret dom and esnext types, as well as react for jsx. Adjust according to your needs.
Continuous Integration
GitHub Actions
Two actions are added by default:
mainwhich installs deps w/ cache, lints, tests, and builds on all pushes against a Node and OS matrixsizewhich comments cost comparison of your library on every pull request using size-limit
Optimizations
Please see the main tsdx optimizations docs. In particular, know that you can take advantage of development-only optimizations:
// ./types/index.d.ts
declare var __DEV__: boolean;
// inside your code...
if (__DEV__) {
console.log('foo');
}模块规范
CJS, ESModules, and UMD module formats are supported.
部署 the Example
The Playground is just a simple Parcel app, you can deploy it anywhere you would normally deploy that. Here are some guidelines for manually deploying with the Netlify CLI (npm i -g netlify-cli):
cd example # if not already in the example folder
npm run build # builds to dist
netlify deploy # deploy the dist folderAlternatively, if you already have a git repo connected, you can set up continuous deployment with Netlify:
netlify init
# build command: yarn build && cd example && yarn && yarn build
# directory to deploy: example/dist
# pick yes for netlify.toml命名导出
Per Palmer Group guidelines, always use named exports. Code split inside your React app instead of your React library.
发布
npm publish
业务导入组件过程
- 1.npm i hedelib
- 2.import { DateRange } from 'hedelib';
- <DateRange custom={{ ranges: '今天', '最近1个月' }} />
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago