1
1
mirror of https://github.com/primer/css.git synced 2024-09-21 13:51:52 +03:00
The CSS design system that powers GitHub
Go to file
2019-02-11 14:00:45 -08:00
.github chore: tweak PR template 2019-02-11 14:00:45 -08:00
.storybook fix bad merge 2018-10-17 14:58:35 -07:00
docs chore: lint docs/ 2019-02-11 13:58:19 -08:00
docs-test chore: move all the docs stuff up 2019-02-04 12:55:18 -08:00
fonts chore: re-add fonts/Inter-UI-*.woff 2019-02-07 17:01:22 -08:00
lib chore: lint lib/ 2019-02-11 13:58:10 -08:00
pages fix: fix path to index.scss in _app.js 2019-02-04 15:46:56 -08:00
script chore: rm script/reorg 💥 2019-02-08 11:39:00 -08:00
src chore: move all the SCSS files to src/ 2019-02-04 13:50:17 -08:00
static chore: move all the docs stuff up 2019-02-04 12:55:18 -08:00
tests fix broken year tests 2019-01-04 10:38:05 -08:00
tools/stylelint-selector-no-utility chore: rm -r tools/stylelint-config-primer 2019-02-04 12:37:00 -08:00
.eslintrc.json lint: add eslint configs 2019-02-11 13:57:49 -08:00
.gitignore chore: rename publish-files.txt -> .log 2019-02-07 16:40:38 -08:00
.npmignore chore: add src/ to .npmignore 2019-02-07 17:01:06 -08:00
.npmrc npm: move unsafe-perm from .npmrc to args 2019-02-07 15:05:03 -08:00
.stylelintrc.json Moving .stylelintrc.json to root 2017-07-26 15:14:47 -07:00
CHANGELOG.md chore: update CHANGELOG.md for 11.0.0 2019-01-25 15:43:43 -08:00
CODE_OF_CONDUCT.md add code of conduct 2018-12-04 15:34:29 -05:00
DEVELOP.md docs: scrub references to scripts in DEVELOP.md 2019-02-04 12:26:35 -08:00
LICENSE Happy new year 2018-01-03 15:05:16 -08:00
next.config.js chore: move all the docs stuff up 2019-02-04 12:55:18 -08:00
now.json deploy: add script dir to now.json files 2019-02-04 15:51:26 -08:00
package-lock.json chore: bump package-lock 2019-02-11 13:55:03 -08:00
package.json lint: lint JS files 2019-02-11 13:54:47 -08:00
prettier.config.js lint: add prettier.config.js 2019-02-11 11:38:23 -08:00
README.md docs: nix sentence 2019-02-04 14:32:42 -08:00
RELEASING.md docs: update RELEASING.md 2019-02-04 12:27:08 -08:00

Primer

npm version

Primer CSS is the Sass implementation of Primer, the design system that powers GitHub.

Install

This repository is distributed with npm. After installing npm, you can install @primer/css with this command.

$ npm install --save @primer/css

Usage

The included source files are written in Sass with the SCSS syntax. After installing with npm, you can add your project's node_modules directory to your Sass include paths (AKA load paths in Ruby), then import it like this:

@import "@primer/css/index.scss";

You can import individual Primer modules directly from the @primer/css package:

@import "@primer/css/core/index.scss";
@import "@primer/css/product/index.scss";
@import "@primer/css/marketing/index.scss";

Development

See DEVELOP.md for development docs.

Releasing (Staff only)

You can find docs about our release process in RELEASING.md.

Documentation

The Primer CSS documentation site is created with Next and hosted on [Now].

Running the site

Once you've cloned this repo and run npm install, you can start the site with:

npm start

This should start up the Next dev server and a background task that will keep the pages directory up-to-date whenever you change the source files in modules/primer*.

Syncing the docs

If, for whatever reason, the dev server isn't syncing files, you have two choices:

  1. Stop the server (ctrl-C) and restart it (npm run dev), which will re-sync the files and clear Next's cache.

  2. Run script/sync manually:

    # in the docs directory
    script/sync
    

    If you find yourself needing to do this often, please file an issue and tag @shawnbot. 🙇

The pages directory

The pages directory contains all of the files that map to URLs on the site. Because we plan to host the site at primer.style/css (and because of the way that Now's path aliasing feature works), we nest all of our documentation under the additional css directory.

The sync task maintains a listing of files that it's copied from the modules directory in pages/css/.gitignore, which ensures that none of these files are checked into git.

Sync internals

We use Metalsmith to sync the source docs to the pages directory and transform them in the following ways:

  1. We filter the list of files to only Markdown documents and package.json files
  2. Many package README.mds wrap the actual documentation content in <!-- %docs --> HTML comments that usually include YAML frontmatter. In these instances, we extract the content that portion and reformat the frontmatter.
  3. We filter out any Markdown files that don't include a path frontmatter key, and rename the destination file to match the path (e.g. path: foo/bar writes to pages/css/foo/bar.md).
  4. We set the source frontmatter key to a fully-qualified github.com URL for the source file so that we can link directly to it.
  5. A limited list of fields for all packages is extracted into a single file (pages/css/packages.json), which serves as a light-weight dependency graph.
  6. We read the changelog and write it to whats-new/changelog.md with some additional frontmatter.
  7. We read the list of files from pages/css/.gitignore and delete them from the filesystem, then write the new list of paths so that they aren't committed to git.

All of the logic for syncing the source docs (and transforming them in transit) is controlled in lib/sync.js, and each "step" in the transformation (as well as the watching) is implemented as a Metalsmith plugin.

Why Metalsmith? We're glad you asked! @shawnbot likes the simplicity of Metalsmith's core and how easy it is to write powerful plugins.

License

MIT © GitHub