1
1
mirror of https://github.com/primer/css.git synced 2024-12-25 15:14:59 +03:00
The CSS design system that powers GitHub
Go to file
Kristján Oddsson 303cacae77
Convert package to a ES module (#1528)
* Set package as being a ES module package

* Set `engines` key to node versions that support ES modules

* Rename postcss config to a CommonJS extension

* Use import and export statements

* Import the default globby export

* Set stylelint config files as CommonJS files

* Convert prettier config to a CommonJS module

* Set a root ESLint config folder

* silence non-error output for dist

* export esm for stats modules

* Convert bundle size report

* Create strong-lemons-ring.md

Co-authored-by: Jon Rohan <yes@jonrohan.codes>
2021-08-11 14:10:47 -07:00
__tests__ Fixing deprecation test 2021-07-02 08:32:05 -07:00
.changeset Convert package to a ES module (#1528) 2021-08-11 14:10:47 -07:00
.github Bump actions/stale from 3 to 4 (#1503) 2021-07-19 10:31:58 -07:00
docs Creating Header-input class for dark header inputs (#1506) 2021-07-20 15:29:25 +00:00
script Convert package to a ES module (#1528) 2021-08-11 14:10:47 -07:00
src render code at 100% font size irregardless of direct descension (#1525) 2021-08-05 10:18:28 -06:00
.eslintrc.json Convert package to a ES module (#1528) 2021-08-11 14:10:47 -07:00
.gitignore create pretest script 2021-03-31 22:40:51 -07:00
.node-version Adding node-version back 2021-04-08 10:15:15 -07:00
.npmignore ignore vercel.json 2021-04-07 09:10:53 -07:00
.npmrc don't create package-lock on install 2021-03-31 21:22:41 -07:00
.nvmrc nvmrc file 2021-04-08 10:22:55 -07:00
.vercelignore Revert "change names back" 2021-04-11 15:51:18 -07:00
CHANGELOG.md Version Packages (#1523) 2021-08-05 16:31:56 +00:00
CODE_OF_CONDUCT.md Move standard docs to root (#1454) 2021-06-10 12:09:59 +09:00
CONTRIBUTING.md Move standard docs to root (#1454) 2021-06-10 12:09:59 +09:00
deprecations.js Convert package to a ES module (#1528) 2021-08-11 14:10:47 -07:00
DEVELOP.md Move standard docs to root (#1454) 2021-06-10 12:09:59 +09:00
LICENSE Updating docs to reflect new release workflow 2021-04-01 13:36:44 -07:00
package.json Convert package to a ES module (#1528) 2021-08-11 14:10:47 -07:00
postcss.config.cjs Convert package to a ES module (#1528) 2021-08-11 14:10:47 -07:00
prettier.config.cjs Convert package to a ES module (#1528) 2021-08-11 14:10:47 -07:00
README.md Move standard docs to root (#1454) 2021-06-10 12:09:59 +09:00
RELEASING.md Move standard docs to root (#1454) 2021-06-10 12:09:59 +09:00
stylelint.config.cjs Convert package to a ES module (#1528) 2021-08-11 14:10:47 -07:00
vercel.json Revert "change names back" 2021-04-11 15:51:18 -07:00
yarn.lock Bump @primer/primitives from 4.5.1 to 4.5.2 (#1521) 2021-08-02 15:28:26 +00:00

Primer CSS

The CSS implementation of GitHub's Primer Design System

Documentation

Our documentation site lives at primer.style/css. You'll be able to find detailed documentation on getting started, all of the components, our theme, our principles, and more.

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 using 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 (for GitHub staff)

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

License

MIT © GitHub