Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-sokolowski committed Apr 8, 2020
0 parents commit e4cf714
Show file tree
Hide file tree
Showing 8 changed files with 2,465 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# OS
.DS_Store

# node.js & npm
node_modules
.nyc_output
npm-debug.log

# Editor files
/.project
/.settings
/.idea
/.vscode

# coverage
coverage

package-lock.json
yarn-lock.json

# dist
dist
13 changes: 13 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
coverage
node_modules
src
.editorconfig
.gitignore
.npmignore
.versionrc.json
.eslintrc.js
.prettierrc.js
jest.config.js
tsconfig.json
yarn.lock
CONTRIBUTING.md
7 changes: 7 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
semi: true,
trailingComma: "all",
singleQuote: true,
printWidth: 120,
tabWidth: 4
};
10 changes: 10 additions & 0 deletions .versionrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"types": [
{"type": "feat", "section": "New features"},
{"type": "fix", "section": "Bug fixes"},
{"type": "docs", "section": "Documentation"},
{"type": "refactor", "section": "Code refactor"},
{"type": "perf", "section": "Performance improvements"},
{"type": "test", "section": "Unit tests"}
]
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# sass-skeleton
Skeleton for sass libraries
37 changes: 37 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "@adso/sass-skeleton",
"version": "1.0.0",
"description": "Skeleton for sass libraries",
"repository": {
"type": "git",
"url": "[email protected]:adam-sokolowski/sass-skeleton.git"
},
"keywords": [
"sass",
"skeleton"
],
"main": "dist/_index.scss",
"files": [
"dist"
],
"scripts": {
"sass:lint": "sass-lint 'src/**/*.scss' -v -q",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"reset:githooks": "rm -rf ./.git/hooks/* && rm -rf node_modules/husky && yarn install --check-files"
},
"husky": {
"hooks": {
"pre-commit": [
"yarn sass:lint"
]
}
},
"author": "Adam Sokołowski <[email protected]>",
"license": "MIT",
"devDependencies": {
"husky": "4.2.3",
"sass-lint": "1.13.1",
"standard-version": "7.1.0"
}
}
Empty file added src/index.scss
Empty file.
Loading

0 comments on commit e4cf714

Please sign in to comment.