master
Kar 2022-09-06 16:11:02 +05:30
commit b2e5f127cf
8 changed files with 86 additions and 0 deletions

7
.cicdhosting.toml Normal file
View File

@ -0,0 +1,7 @@
[build]
# Publish directory
publish = "dist"
# Default build command.
##command = "yarn prod"
static = "dist"

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
node_modules/
dist/
.cache/
.parcel-cache/

5
.postcssrc Normal file
View File

@ -0,0 +1,5 @@
{
"plugins": {
"tailwindcss": {}
}
}

12
LICENSE Normal file
View File

@ -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.

24
package.json Normal file
View File

@ -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 <kar@siliconpin.com>",
"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"
}
}

View File

@ -0,0 +1,5 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

17
src/index.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tailwind Starter Template</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link href="./assets/css/styles.css" rel="stylesheet" />
</head>
<body>
<div class="min-h-screen flex items-center justify-center">
<h1 class="text-5xl text-purple-500 font-sans">Greetings.</h1>
</div>
</body>
</html>

12
tailwind.config.js Normal file
View File

@ -0,0 +1,12 @@
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: ["./src/*.html"],
theme: {
extend: {},
},
variants: {},
plugins: [],
};