Skip to content

Files

compass-shell

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 18, 2025
Dec 1, 2022
Dec 1, 2022
Apr 24, 2024
Apr 24, 2024
Dec 1, 2022
May 9, 2025
Dec 1, 2022
Dec 1, 2022

compass-shell

Compass Shell Plugin

Features

Enzyme

The test environment is configured to test components with Enzyme (including full mount mode through jsdom) and enzyme-chai. See the test folder for examples. Run npm test to execute the test suite.

Developing

Almost all of your development will happen in the ./src directory. Add new components to ./src/components, actions to ./src/actions/index.js and if you need additional stores, add them to ./src/stores.

Directory Structure

For completeness, below is a list of directories present in this module:

  • dist compiled version of your components (plain javascript instead of jsx) and styles (css instead of less). Never change anything here as this entire folder gets automatically created and overwritten.
  • src components, actions and stores source code, as well as style files. This is the place to implement your own components. npm run compile will use ./src as input and create ./dist.