yummacss 1.0.2 → 1.0.3

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/CHANGELOG.md CHANGED
@@ -130,5 +130,19 @@ All notable changes to the Yumma CSS Library will be documented in this file.
130
130
  - Fixed viewport classes from not working.
131
131
  - Fixed caret color light and dark variations.
132
132
 
133
+ ### Deprecated
134
+ - None
135
+
136
+ ## v1.0.3
137
+
138
+ ### Added
139
+ - None
140
+
141
+ ### Changed
142
+ - Minified CSS file moved to the `/dist` folder.
143
+
144
+ ### Fixed
145
+ - None
146
+
133
147
  ### Deprecated
134
148
  - None
package/README.md CHANGED
@@ -1,54 +1,59 @@
1
- # Yumma CSS
2
-
3
- <img src="https://i.ibb.co/4ZNLWYj/app-icon.jpg" width="50" height="50">
4
-
5
- Yumma CSS, created by **Renildo Pereira**, is a lightweight and streamlined CSS library that provides a comprehensive set of tools and functionalities to simplify web development.
6
-
7
- ## Installation
8
- You can include Yumma CSS in your project either by using our Content Delivery Network (CDN) link or by using a package manager.
9
-
10
- ### Integrate via CDN
11
- ```html
12
- <link rel="stylesheet" href="https://unpkg.com/yummacss/public/css/yumma.min.css" crossorigin="anonymous">
1
+ <p align="center">
2
+ <a href="https://yummacss.vercel.app/">
3
+ <img src="https://yummacss.vercel.app/img/yumma-css.png" width="64" alt="Yumma CSS Logo">
4
+ </a>
5
+ </p>
6
+
7
+ <h3 align="center">Yumma CSS</h3>
8
+
9
+ <p align="center">
10
+ Lightweight and streamlined CSS library that provides a set of tools to simplify web development.
11
+ <br>
12
+ <a href="https://yummacss.vercel.app/"><strong>Explore Yumma CSS Docs ↝</strong></a>
13
+ <br>
14
+ <br>
15
+ <a href="https://yummacss-editor.vercel.app/">Try Yumma CSS</a>
16
+
17
+ <a href="https://github.com/yumma-lib/yumma-css/issues">VS Code Extension</a>
18
+
19
+ <a href="https://yummacss.vercel.app/blog">Blog</a>
20
+
21
+ <a href="https://github.com/yumma-lib/yumma-css/issues">Issues</a>
22
+ </p>
23
+
24
+ <p align="center">
25
+ <a href="https://www.npmjs.com/yummacss/yummacss">
26
+ <img src="https://img.shields.io/npm/v/yummacss.svg" alt="npm version">
27
+ </a>
28
+ <a href="https://www.npmjs.com/yummacss/yummacss">
29
+ <img src="https://img.shields.io/npm/dt/yummacss.svg" alt="Downloads">
30
+ </a>
31
+ <a href="https://opensource.org/licenses/MIT">
32
+ <img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License">
33
+ </a>
34
+ </p>
35
+
36
+ ## Getting Started
37
+
38
+ You can use [npm](https://www.npmjs.com/yummacss/yummacss) to include the Yumma CSS in your project, or you can add it using [jsDelivr](https://www.jsdelivr.com/):
39
+
40
+ ### cdn
13
41
  ```
14
-
15
- ### Install via NPM
42
+ <link href="https://cdn.jsdelivr.net/npm/yummacss/dist/yumma.min.css rel="stylesheet" crossorigin="anonymous">
16
43
  ```
17
- npm install yummacss
18
- ```
19
-
20
- ## Version Display
21
- To display the Yumma CSS version in your console, import the following code snippet and call the `showVer` function:
22
-
23
- ```js
24
- const packageJson = require('./package.json');
25
44
 
26
- const showVer = () => {
27
- const version = packageJson.version;
28
- console.log(`You're running Yumma CSS v${version}!`);
29
- };
30
-
31
- module.exports = { showVer };
32
- ```
33
-
34
- ### How to use
35
- To display the Yumma CSS version in your console, just call the `showVer` function in your project code:
36
-
37
- ```js
38
- const { showVer } = require('./index');
45
+ ### npm
46
+ ```bash
47
+ npm install yummacss
39
48
  ```
40
49
 
41
- ## Documentation
42
- For comprehensive documentation, visit the [Yumma CSS Docs](https://yummacss.vercel.app/).
43
-
44
- ## License
45
- Yumma CSS is open-source software licensed under the MIT License.
46
-
47
- ## Support
50
+ ## Community
48
51
 
49
52
  If you have questions or want to stay updated on our projects, here are some ways to connect with us:
50
53
 
51
54
  - Join our [Discord](https://discord.gg/CGw5vyqmQ6) server.
52
55
  - Follow us on [Twitter](https://twitter.com/yummacss) for the latest updates.
53
56
 
54
- If you'd like to show your support for our work, [you can buy me a coffee](https://www.buymeacoffee.com/rrenildoo).
57
+ ## Contributing
58
+
59
+ If you'd like to show your support for our work, [you can buy me a coffee](https://www.buymeacoffee.com/rrenildoo).
package/gulpfile.js CHANGED
@@ -14,7 +14,7 @@ function minifyStyles() {
14
14
  return src('dist/yumma.css')
15
15
  .pipe(clean())
16
16
  .pipe(rename({ suffix: '.min' }))
17
- .pipe(dest('public/css'));
17
+ .pipe(dest('dist'));
18
18
  }
19
19
 
20
20
  function watchTask() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yummacss",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A CSS library for streamlined UI development.",
5
5
  "main": "index.js",
6
6
  "style": "dist/yumma.css",
@@ -18,9 +18,11 @@
18
18
  "scripts": {
19
19
  "build": "gulp buildStyles",
20
20
  "minify": "gulp minifyStyles",
21
- "watch": "gulp watchTask"
21
+ "watch": "gulp watchTask",
22
+ "prod": "concurrently \"gulp buildStyles\" \"gulp minifyStyles\""
22
23
  },
23
24
  "devDependencies": {
25
+ "concurrently": "^8.2.2",
24
26
  "gulp": "^4.0.2",
25
27
  "gulp-clean-css": "^4.3.0",
26
28
  "gulp-copy": "^4.0.1",
File without changes