0.0.2 โ€ข Published 8 months ago

@techhoruser/react-accordion-component v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

โšก Using this Vite template

  1. Create your project based on this template:
    • a) If you want to create a GitHub repository, we would recommend to use the GitHub "Use this template" button and clone your newly created repository
    • b) If you prefer to just create a local project, you can use degit:
      npx degit TechHoruser/typescript-react-library-template#main my-app
  2. Update your project meta-information:
    • Update the package.json:
      • Specify proper values for the name, author and license properties
      • Specify the file name for the main and module properties
      • If you wish to expose multiple entry points, follow this structure:
       {
         "name": "my-component",
         "type": "module",
         "files": ["dist"],
         "main": "./dist/my-component.cjs",
         "module": "./dist/my-component.js",
         "exports": {
           ".": {
             "import": "./dist/my-component.js",
             "require": "./dist/my-component.cjs"
           },
           "./secondary": {
             "import": "./dist/secondary.js",
             "require": "./dist/secondary.cjs"
           }
         }
       }
    • Change the name and fileName in vite.config.ts to match the file name specified in the package.json
    • Change the author in LICENSE
    • Clean up this README.md
  3. Set up your GitHub Actions workflow:
    • If you do not wish to publish to npm, you can delete the .github/workflows/publish.yml
    • If you do wish to publish to npm, you can delete the .github/workflows/CI.yml and set up your token following the instructions below.
  4. Run your library:
    1. cd my-library: Move to your project root directory
    2. npm install: Install all the project dependencies
    3. npm run docs: Start the Storybook dev mode on localhost:6006

๐Ÿ“š Documentation

  • npm run docs: Run Storybook documentation in dev mode
  • npm run build:docs: Build Storybook documentation

โœ… Testing

This template comes with both Jest and Cypress component testing. Since this is a template for a component library, we feel it doesn't make sense to use the e2e Cypress option, but feel free to change it to your needs.

Unit tests

npm run test: Run unit tests with Jest and React Testing Library npm run test:watch: Run unit tests on watch mode

Component tests

  npm run cy:open: Open Cypress in dev mode
  npm run cy:run: Execute Cypress in CLI

๐Ÿ”ฆ Linting

  • npm run lint: Run linter
  • npm run lint:fix: Fix lint issues

๐Ÿš€ CI and Publishing

This template comes with a GitHub Actions workflow to automatically publish on any push to main when the package.json version number differs from the latest on npm. Please note that you need to create the package on NPM first.

For it to work you will need to add an NPM_TOKEN secret to your repo:

  1. Create an automation token in NPM
  2. Go to your GitHub Repository Settings / Secrets / Actions
  3. Click on the "New repository secret" button
  4. Fill in the form:
    • Name: NPM_TOKEN
    • Secret: the NPM token value

Read the full documentation on the npm-publish action.

๐ŸŒˆ Tech Stack

๐Ÿค” FAQ

๐Ÿ‘ป Why not adding .vscode or .idea to the .gitignore template

These are folders created due to personal environment preferences. We should ignore these personal development environment preferences to be ignored using your global .gitignore file and leave the project .gitignore file as clean as possible, that is, only containing the project specific rules.

You can create a .gitignore_global file with rules that will apply to all your repositories with:

touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global

๐Ÿ‘Œ Codely Code Quality Standards

Publishing this package we are committing ourselves to the following code quality standards:

  • ๐Ÿค Respect Semantic Versioning: No breaking changes in patch or minor versions
  • ๐Ÿค No surprises in transitive dependencies: Use the bare minimum dependencies needed to meet the purpose
  • ๐ŸŽฏ One specific purpose to meet without having to carry a bunch of unnecessary other utilities
  • โœ… Tests as documentation and usage examples
  • ๐Ÿ“– Well documented ReadMe showing how to install and use
  • โš–๏ธ License favoring Open Source and collaboration

๐Ÿ”€ Related information

This application was generated using the <โšกโš›๏ธ> TypeScript React Library Template. Feel free to check it out and star the repo! ๐ŸŒŸ๐Ÿ˜Š๐Ÿ™Œ

0.0.2

8 months ago