Skip to content

Commit

Permalink
file added
Browse files Browse the repository at this point in the history
  • Loading branch information
Kishor-Kumar-Namdeo committed Nov 24, 2019
1 parent e3221d2 commit e720318
Show file tree
Hide file tree
Showing 4 changed files with 804 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 @@
.DS_Store
node_modules
/dist
# local env files
.env.local
.env.*.local
index.html

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
16 changes: 16 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "simplify",
"version": "1.0.0",
"description": "Simplify is progressive css framework.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-sass": "node-sass --output-style expanded --source-map true simplify.scss css/simplify.css",
"start": "npm run build-sass -- --watch"
},
"author": "Kishor Kumar Namdeo",
"license": "ISC",
"dependencies": {
"node-sass": "^4.13.0"
}
}
Loading

0 comments on commit e720318

Please sign in to comment.