From b2e5f127cf53a0814f55b6fc3fc2208d6587a378 Mon Sep 17 00:00:00 2001 From: Kar Date: Tue, 6 Sep 2022 16:11:02 +0530 Subject: [PATCH] init --- .cicdhosting.toml | 7 +++++++ .gitignore | 4 ++++ .postcssrc | 5 +++++ LICENSE | 12 ++++++++++++ package.json | 24 ++++++++++++++++++++++++ src/assets/css/styles.css | 5 +++++ src/index.html | 17 +++++++++++++++++ tailwind.config.js | 12 ++++++++++++ 8 files changed, 86 insertions(+) create mode 100644 .cicdhosting.toml create mode 100644 .gitignore create mode 100644 .postcssrc create mode 100644 LICENSE create mode 100644 package.json create mode 100644 src/assets/css/styles.css create mode 100644 src/index.html create mode 100644 tailwind.config.js diff --git a/.cicdhosting.toml b/.cicdhosting.toml new file mode 100644 index 0000000..49728c9 --- /dev/null +++ b/.cicdhosting.toml @@ -0,0 +1,7 @@ +[build] + # Publish directory + publish = "dist" + + # Default build command. + ##command = "yarn prod" + static = "dist" \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..524b24e --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +node_modules/ +dist/ +.cache/ +.parcel-cache/ \ No newline at end of file diff --git a/.postcssrc b/.postcssrc new file mode 100644 index 0000000..0985cb2 --- /dev/null +++ b/.postcssrc @@ -0,0 +1,5 @@ +{ + "plugins": { + "tailwindcss": {} + } +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..863dfb7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,12 @@ +MUKTI +license Mukti/Moksh - 'the liberation' is a basic realization that the result of distribution or giving away does not always come short, specially when things are non physical. MUKTI is not a license but a step towards a license free civilization. +Human race is better with 'some sense' rather a bunch of license. [have some sense, not licenses.] + +till all the licenses are deprecated and decentralize [ specially for software, hardware, education, experience,even the network protocol (internet) ], lets use freedom centric and/or having "take if it helps you, just don't sue us - kind of mentality" licenses like GPL, MIT, BSD ... + +this will not be registered / certified / legalise in any manner, as it's not about enforcement - it is about freedom to share. + +example of 'some sense': + verbose incremental documentation with versioning, attaching contributor information. + try to make some OFFERING to the contributor or the contributing organization with or without a subscription / support. + maximize the use of freedom centric tools[hardware, software, os ...] enen if it costs and costs more, try not to be the product. \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..77135e0 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "boilarplate-tailwindcss-parcel", + "version": "1.0.0", + "description": "tailwind, parcel", + "scripts": { + "dev": "yarn parcel src/index.html", + "build": "rm -rf dist/* && parcel build src/index.html" + }, + "repository": "git@git.siliconpin.com:dwd/boilarplate-tailwindcss-parcel.git", + "author": "Kar ", + "license": "MUKTI", + "engines": { + "node": ">=14" + }, + "browserslist": "> 0.5%, last 2 versions, not dead", + "devDependencies": { + "autoprefixer": "^10.2.5", + "parcel": "^2.0.1", + "postcss": "^8.2.8", + "postcss-cli": "^8.3.1", + "tailwindcss": "^2.0.3", + "typescript": "^4.2.3" + } +} diff --git a/src/assets/css/styles.css b/src/assets/css/styles.css new file mode 100644 index 0000000..7f39374 --- /dev/null +++ b/src/assets/css/styles.css @@ -0,0 +1,5 @@ +@tailwind base; + +@tailwind components; + +@tailwind utilities; diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..2ea96aa --- /dev/null +++ b/src/index.html @@ -0,0 +1,17 @@ + + + + Tailwind Starter Template + + + + + +
+

Greetings.

+
+ + diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..74fc501 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,12 @@ +module.exports = { + future: { + removeDeprecatedGapUtilities: true, + purgeLayersByDefault: true, + }, + purge: ["./src/*.html"], + theme: { + extend: {}, + }, + variants: {}, + plugins: [], +};