1.1.20 • Published 1 month ago

@b12/metronome v1.1.20

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
1 month ago

Metronome

Metronome is a design system we use for developing consistent user experiences at B12. We recently open sourced it to allow us to use it in other open source projects, and to make the useful and reusable components more widely available to developers outside the company.

How to develop

Root of the repo looks like this. The main parts are: components and style directories, they contain basic components and styles all other files are here to help you develop and test your components. src directory contains files to preview your components in browser, keep in mind that this directory won’t be included in npm package (to see other ignored files and directories see .npmignore file).

.
├── LICENSE
├── README.md
├── components
├── index.es6.js
├── jest
├── node_modules
├── package.json
├── src
├── style
├── third_party
├── webpack.config.js
└── yarn.lock

::Warning! By convention, all javascript files should have a *.es6.js file extension.::

Below are basic command you may need:

# Run demo in browser
$ yarn start

# Run tests
$ yarn test

If you are developing on a remote machine and want to view the demo in your browser,

  • You'll probably need to edit webpack.config.js and change module.exports.devServer.port to be an available port on your machine.
  • You might also need to edit module.exports.devServer.allowedHosts to include your hostname. The default supports b12.io or any subdomain (see the documentation of host formats).
  • Then you can access the demo interface at http://your-remote-server.com:{port}.

How can I test my changes in an internal repository without publishing?

Note: If you're using docker, then you should do this outside of docker.

You can do it in five steps:

  1. In the metronome repository link metronome in yarn with command yarn link;
  2. In the metronome repository run yarn install --production;
  3. In your internal repository (crowdsurfing/product) use your linked version with command yarn link @b12/metronome;
  4. In your internal repository try to build product with yarn && yarn dev;

In case you accidentally ran the commands inside of docker and are running into permissions issues 1. In your docker env remove node_modules folder, also remove build/static/build dir; 2. On your host machine recreate build/static/build dir with local user permissions; 3. Go to the internal repository on your host machine and run yarn && yarn dev;

Known issues

  1. Reinstall metronome dependencies with --production flag before testing your changes in an internal repository;
  2. If you see a lot of unexpected flow errors run yarn flow stop && yarn dev;
  3. If yarn install --production installs dev dependencies try npm npm install --production instead;

Steps to take if you continue to get flow, webpack, and duplicate react package errors

  • In your metronome repo, run:

    1. rm -rf node_modules;
    2. npm i --production;
  • Then, in the internal repository, run:

    1. rm -rf node_modules;
    2. yarn;
    3. yarn link @b12/metronome;
    4. yarn flow-reboot;
1.1.20

1 month ago

1.1.19

2 months ago

1.1.18

2 months ago

1.1.17

5 months ago

1.1.16

7 months ago

1.1.15

9 months ago

1.1.14

11 months ago

1.1.13

1 year ago

1.1.12

1 year ago

1.1.11

1 year ago

1.1.9

1 year ago

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.10

1 year ago

1.1.3

2 years ago

1.1.1

2 years ago

1.1.2

2 years ago

1.0.13

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.12

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.0

4 years ago