From 077ee84998c5bdadbf3003176a696b3e2305a049 Mon Sep 17 00:00:00 2001 From: roman Date: Thu, 15 Oct 2020 20:29:52 +0400 Subject: [PATCH] first commit --- .gitignore | 52 ++++++++++++++++++++++++++++++++++++++++++++++ .npmrc | 1 + .prettierrc.js | 15 ++++++++++++++ .remarkrc.js | 5 +++++ README.md | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++ Taskfile | 13 ++++++++++++ package.json | 26 +++++++++++++++++++++++ 7 files changed, 168 insertions(+) create mode 100644 .gitignore create mode 100644 .npmrc create mode 100644 .prettierrc.js create mode 100644 .remarkrc.js create mode 100644 README.md create mode 100644 Taskfile create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bbcc4c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,52 @@ +### https://raw.github.com/github/gitignore/5d896f6791c4257b74696714c66b2530b8d95a51/Node.gitignore +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +# Runtime data +pids +*.pid +*.seed +*.pid.lock +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov +# Coverage directory used by tools like istanbul +coverage +# nyc test coverage +.nyc_output +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt +# Bower dependency directory (https://bower.io/) +bower_components +# node-waf configuration +.lock-wscript +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release +# Dependency directories +node_modules/ +jspm_packages/ +# Typescript v1 declaration files +typings/ +# Optional npm cache directory +.npm +# Optional eslint cache +.eslintcache +# Optional REPL history +.node_repl_history +# Output of 'npm pack' +*.tgz +# Yarn Integrity file +.yarn-integrity +# dotenv environment variables file +.env +# Custom +dist/ +~* +.idea +.awcache +.vscode +.rts2_cache_* +.stryker-tmp +reports diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..c1ca392 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +package-lock = false diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000..8748676 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,15 @@ +module.exports = { + printWidth: 100, + trailingComma: 'all', + tabWidth: 4, + semi: true, + singleQuote: true, + overrides: [ + { + files: '*.{json,yml}', + options: { + tabWidth: 2, + }, + }, + ], +}; diff --git a/.remarkrc.js b/.remarkrc.js new file mode 100644 index 0000000..9d2ad4f --- /dev/null +++ b/.remarkrc.js @@ -0,0 +1,5 @@ +module.exports = { + plugins: [ + ['toc'], + ], +}; diff --git a/README.md b/README.md new file mode 100644 index 0000000..3d97316 --- /dev/null +++ b/README.md @@ -0,0 +1,56 @@ +# Tailwind Components + +Collection of components found on the internet + +| Component | Source | Demo | +| :------------- | :----- | :-------------------- | +| Alert | x | https://merakiui.com/ | +| Alert | x | https://merakiui.com/ | +| Alert | x | https://merakiui.com/ | +| Alert | x | https://merakiui.com/ | +| Alert | x | https://merakiui.com/ | +| Authentication | | | +| Buttons | | | +| Cards | | | +| Dropdowns | | | +| Forms | | | +| Footers | | | +| Heros | | | +| Navbars | | | +| Paginations | | | +| Sections | | | +| Select | | | + +#### Alerts + +- Alert https://merakiui.com/ + +#### Authentication + +#### Buttons + +#### Cards + +#### Dropdowns + +#### Forms + +#### Footers + +#### Heros + +#### Navbars + +#### Paginations + +#### Sections + +#### Select + +## Resources + +- https://app.getpocket.com/tags/tailwind/all +- https://github.com/unlight?tab=stars&q=&q=tailwind +- https://github.com/aniftyco/awesome-tailwindcss +- https://github.com/slim-python/tailwind-css-free-components +- https://merakiui.com/ diff --git a/Taskfile b/Taskfile new file mode 100644 index 0000000..bfac5dc --- /dev/null +++ b/Taskfile @@ -0,0 +1,13 @@ +#!/bin/bash +PATH="$PWD/node_modules/.bin":$PATH +set -e + +remark_run() { + node -r ts-node/register/transpile-only node_modules/remark-cli/cli.js readme.md "$@" +} + +remark_output() { + remark_run --output +} + +"$@" diff --git a/package.json b/package.json new file mode 100644 index 0000000..9f7c347 --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "Tailwind Components", + "version": "0.0.0-dev", + "main": "index.js", + "typings": "index.d.ts", + "author": "2020", + "keywords": [], + "scripts": {}, + "config": { + "commitizen": { + "path": "node_modules/cz-customizable" + } + }, + "husky": { + "hooks": { + "pre-commit": "precise-commits" + } + }, + "devDependencies": { + "prettier": "^2.1.2", + "remark": "^13.0.0", + "remark-cli": "^9.0.0", + "remark-toc": "^7.0.0", + "ts-node": "^9.0.0" + } +}