Skip to content

Commit

Permalink
Move to ssbuild org on npm
Browse files Browse the repository at this point in the history
  • Loading branch information
jsonmaur committed Dec 24, 2021
1 parent 16b2d13 commit fdf5ca0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ ssbuild was inspired by similar utility-first CSS frameworks such as TailwindCSS
If you don't need any customization and want to start using the utility classes right away, you can link directly to the default build in your HTML.

```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@maurandco/[email protected].1/index.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ssbuild/core@0.0.2/index.min.css" />
```

If you want to customize your build, you'll need to install ssbuild into your project using one of these methods.
Expand All @@ -53,12 +53,12 @@ If you want to customize your build, you'll need to install ssbuild into your pr
- Install with [hex](https://hex.pm) (Elixir): _not supported yet_
- Install with [gem](https://rubygems.org) (Ruby): _not supported yet_
- Install with [pip](https://pypi.org) (Python): _not supported yet_
- Install with [npm](https://www.npmjs.com) (Node): `npm install @maurandco/ssbuild`
- Install with [npm](https://www.npmjs.com) (Node): `npm install @ssbuild/core`

## Usage

```scss
@use "@maurandco/ssbuild";
@use "@ssbuild/core";
```

That's it! All the utility classes will now be included in your CSS output.
Expand All @@ -80,7 +80,7 @@ That's it! All the utility classes will now be included in your CSS output.
## Customization

```sass
@use "@maurandco/ssbuild" with (
@use "@ssbuild/core" with (
$normalize: false,
$dark-mode: class,
$primary-fonts: (
Expand Down
2 changes: 1 addition & 1 deletion publish/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@maurandco/ssbuild",
"name": "@ssbuild/core",
"version": "0.0.1",
"description": "A style system generator and utility-first CSS framework built in Sass.",
"main": "index.scss",
Expand Down

0 comments on commit fdf5ca0

Please sign in to comment.