https://github.com/threespot/frontline-sass-snippets
Frontline Sass snippets for Atom and VS Code
https://github.com/threespot/frontline-sass-snippets
Last synced: 7 months ago
JSON representation
Frontline Sass snippets for Atom and VS Code
- Host: GitHub
- URL: https://github.com/threespot/frontline-sass-snippets
- Owner: Threespot
- License: other
- Created: 2018-03-21T22:44:13.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-09-04T20:30:41.000Z (almost 6 years ago)
- Last Synced: 2024-12-28T16:19:36.863Z (over 1 year ago)
- Language: CSS
- Homepage:
- Size: 36.1 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# frontline-sass-snippets
[Frontline Sass](https://github.com/Threespot/frontline-sass) snippets for [Atom](https://atom.io/) and [VS Code](https://code.visualstudio.com/).
## Install
### Atom
```shell
apm install frontline-sass-snippets
```
https://atom.io/packages/frontline-sass-snippets
### VS Code
```shell
code --install-extension threespot.frontline-sass-snippets
```
https://marketplace.visualstudio.com/items?itemName=Threespot.frontline-sass-snippets
## Snippets
Snippets for the main variables, functions and mixins, as well as the selector mixins.
See [documentation](http://threespot.github.io/frontline-sass/documentation/) for a comprehensive list.
## Publishing Updates
VS Code snippets are generated using the [`convert-atom-snippets-to-vscode`](https://github.com/binaryoung/convert-atom-snippets-to-vscode) module. Any added snippet files will also need to be added to the `package.json` `contributes.snippets` key.
```
node node_modules/convert-atom-snippets-to-vscode/src/command.js snippets/ vs-snippets/
```
### Create a new version using npm
```
npm version patch
```
### Publish to atom
```
apm publish --tag v1.0.1
```
### Publish to VS Marketplace
```
vsce publish v1.0.1
```
### Push release to Github
```
git push --tags
```