bl-css 0.7.2 → 0.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/bin/sc.js +17 -0
- package/bl.css +1 -0
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# bl CSS
|
|
2
2
|
A *lightweight*, **blueviolet**, ***small*** CSS framework!
|
|
3
|
-
# 0.7.
|
|
4
|
-
I
|
|
3
|
+
# 0.7.4 - Release notes(by Dev)
|
|
4
|
+
Guess what? I learned JS and Python in under **1 hour** and made a npx! use npx bl-css or npx bl to copy the file from the deep trenches of the alien(node_modules) to you DIRECT folder :D! And if you're feeling lucky, download bun and use bunx bl to do its **2x faster**
|
|
5
5
|
|
|
6
6
|
Have a Nice day Using it **:D**
|
package/bin/sc.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const fs = require('fs');
|
|
3
|
+
const path = require('path');
|
|
4
|
+
console.log("Extracting bl CSS...");
|
|
5
|
+
// Getting the paths
|
|
6
|
+
const src = path.join(__dirname, '..', 'bl.css');
|
|
7
|
+
const dest = path.join(process.cwd(), 'bl.css');
|
|
8
|
+
// Actually doing the code lol
|
|
9
|
+
try {
|
|
10
|
+
fs.copyFileSync(src, dest);
|
|
11
|
+
console.log("bl CSS extracted from the Alien Trenches 🤣");
|
|
12
|
+
}
|
|
13
|
+
catch (e) {
|
|
14
|
+
console.log("The Alien has hidden the package!");
|
|
15
|
+
console.log("run 'npm install bl-css' if you haven't yet")
|
|
16
|
+
console.log("And don't you dare make it 'Global' bruh");
|
|
17
|
+
}
|
package/bl.css
CHANGED
package/package.json
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bl-css",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"description": "black - blueviolet
|
|
3
|
+
"version": "0.7.4",
|
|
4
|
+
"description": "black - blueviolet lightweight CSS framework",
|
|
5
5
|
"main": "bl.css",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
8
|
},
|
|
9
|
-
"
|
|
9
|
+
"bin": {
|
|
10
|
+
"bl-css": "./bin/sc.js",
|
|
11
|
+
"bl": "./bin/sc.js"
|
|
12
|
+
},
|
|
13
|
+
"files": ["bl.css", "README.md", "sc.js"],
|
|
10
14
|
"exports": {
|
|
11
15
|
".": "./bl.css",
|
|
12
16
|
"./info": "./README.md",
|
|
13
17
|
"./help": "./README.md",
|
|
14
18
|
"./style": "./bl.css"
|
|
15
19
|
},
|
|
16
|
-
"keywords": ["
|
|
20
|
+
"keywords": ["css", "framework", "black", "blueviolet", "lightweight"],
|
|
17
21
|
"author": "__fg_xd",
|
|
18
22
|
"license": "MIT"
|
|
19
23
|
}
|