# Svelma ( Svelte ft Buma CSS )
Svelma is a set of UI components for Svelte based on the Bulma CSS framework.
Much thanks to the Buefy project! It provided the inspiration and lots of code examples for Svelma.. If you like Vue.js and Bulma, check it out.
50K
minified, 14K
gzipped.https://github.com/sveltejs/template is a template repo for svelte. degit will scaffold the repo for you:
$ npx degit sveltejs/template my-svelma-project
$ cd my-svelma-project
$ npm install
NOTE: There are of course other ways to set up a project using svelte. This is just the quickest way to start.
Note that you'll need a CSS processing plugin for rollup so that you can import css files. Here we're using rollup-plugin-postcss
. If you're going to use a
<link>
tag in your HTML you can skip the plugin and the import ... css
statement below in step #2
$ npm install --save bulma svelma
$ npm install sass rollup-plugin-postcss --save-dev
Add the postcss plugin to your rollup config (I don't think the order really matters):
// rollup.config.js
import postcss from 'rollup-plugin-postcss'
// ...
export default {
// ...
plugins: [
svelte({
// ...
}),
postcss(),
}
}
<!-- App.svelte -->
<script>
import 'bulma/css/bulma.css'
import { Button } from 'svelma'
</script>
<Button type="is-primary">I'm a Button!</Button>
From CDN in your HTML page:
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"></link>
...or as an npm package imported into your root component:
$ npm install --save @fortawesome/fontawesome-free
<!-- App.svelte -->
<script>
import 'bulma/css/bulma.css'
import '@fortawesome/fontawesome-free/css/all.css'
</script>
If you are doing server-side rendering with Sapper, you'll need to import the .svelte files directly so that your app can compile them, rather than importing from the compiled module.
i.e.:
import Button from 'svelma/src/components/Button.svelte'
instead of
import { Button } from 'svelma'
git clone https://github.com/c0bra/svelma.git
npm i && (cd docs; npm i)
npm install -g semantic-release-cli commitizen
npm run dev
$ git cz
NOTE: CI should publish new versions using semantic-release
automatically
$ npm version <version>
$ npm publish
Code released under MIT license.
Copyright ©, Brian Hann.