Skip to content

Latest commit

 

History

History
84 lines (77 loc) · 2.28 KB

03-architecture.md

File metadata and controls

84 lines (77 loc) · 2.28 KB

Architecture

Summary

  1. Git Flow
  2. Commits
  3. Architecture
  4. Dependencies
  5. Technologies
  6. Identation (code style)
  7. CSS (code style)
  8. Javascript (code style)

Folders

├── dist
├── docs
│   ├── manual
├── helpers
│   ├── build
│   └── component
├── internals
│   ├── storybook
│   ├── test
│   └── webpack
└── shared
    ├── angular
    │   └── components
    │       ├── button
    ├── images
    │   └── svg
    │       └── icons
    ├── react
    │   ├── components
    │   │   ├── alert
    │   │   ├── breadcrumb
    │   │   ├── button
    │   │   ├── form
    │   │   ├── form-actions
    │   │   ├── form-control
    │   │   ├── form-group
    │   │   ├── form-label
    │   │   ├── grid
    │   │   ├── grid-col
    │   │   ├── grid-row
    │   │   ├── help-text
    │   │   ├── image
    │   │   ├── list
    │   │   ├── modal
    │   │   ├── notifier
    │   │   ├── pagination
    │   │   ├── panel
    │   │   ├── suggestions
    │   │   ├── svg-icon
    │   │   └── tag
    │   └── utils
    ├── scss
    │   ├── 00-settings
    │   ├── 01-tools
    │   ├── 02-generic
    │   ├── 03-base
    │   ├── 04-vendor
    │   ├── 05-objects
    │   ├── 06-components
    │   ├── 07-pages
    │   ├── 08-theme
    │   └── 09-trumps
    └── vue
        └── components
            ├── button

Components

  • components (react)
    • button
      • button-component.js component
      • button.scss style
      • button.story.js storybook
      • button.test.js tests
      • index.js

⬆ back to the top