@taraskucherenko/scss-kit 0.1.39 → 0.1.41

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 ADDED
@@ -0,0 +1,92 @@
1
+ # @taraskucherenko/scss-kit
2
+
3
+ > 🇺🇦 [Українська](#українська) | 🇬🇧 [English](#english)
4
+
5
+ ---
6
+
7
+ ## Українська
8
+
9
+ ### Про проєкт
10
+
11
+ **scss-kit** — особистий SCSS фреймворк для власного використання.
12
+ Створений для зручного підключення до будь-якого проєкту та швидкого оновлення за потреби.
13
+ Поступово розвивається та вдосконалюється.
14
+
15
+ ### Встановлення
16
+
17
+ ```bash
18
+ yarn add @taraskucherenko/scss-kit
19
+ ```
20
+
21
+ ```bash
22
+ npm install @taraskucherenko/scss-kit
23
+ ```
24
+
25
+ **Вимоги:** Sass `^1.97.2`
26
+
27
+ ### Підключення
28
+
29
+ **Gulp (поточний воркараунд):**
30
+ ```scss
31
+ @use '../../../node_modules/@taraskucherenko/scss-kit/src/main' as *;
32
+ ```
33
+ > ⚠️ Шлях залежить від глибини файлу в проєкті. Буде покращено в майбутніх версіях.
34
+
35
+ ### Changelog
36
+
37
+ #### v0.1.40 *(поточна)*
38
+ - Додано README файл
39
+
40
+ #### v0.1.39
41
+ - Стабільна версія
42
+
43
+ ---
44
+
45
+ ---
46
+
47
+ ## English
48
+
49
+ ### About
50
+
51
+ **scss-kit** is a personal SCSS framework built for private use.
52
+ Designed to be easily plugged into any project and quickly updated when needed.
53
+ Continuously improved over time.
54
+
55
+ ### Installation
56
+
57
+ ```bash
58
+ yarn add @taraskucherenko/scss-kit
59
+ ```
60
+
61
+ ```bash
62
+ npm install @taraskucherenko/scss-kit
63
+ ```
64
+
65
+ **Requirements:** Sass `^1.97.2`
66
+
67
+ ### Usage
68
+
69
+ **Gulp (current workaround):**
70
+ ```scss
71
+ @use '../../../node_modules/@taraskucherenko/scss-kit/src/main' as *;
72
+ ```
73
+ > ⚠️ Path depends on the file's depth in the project. Will be improved in future versions.
74
+
75
+ ### Changelog
76
+
77
+ #### v0.1.40 *(current)*
78
+ - Added README file
79
+
80
+ #### v0.1.39
81
+ - Stable version
82
+
83
+ ---
84
+
85
+ ## Author
86
+
87
+ **Taras Kucherenko**
88
+ GitLab: [gitlab.com/teekeydev/scss-kit](https://gitlab.com/teekeydev/scss-kit)
89
+
90
+ ## License
91
+
92
+ [MIT](./LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taraskucherenko/scss-kit",
3
- "version": "0.1.39",
3
+ "version": "0.1.41",
4
4
  "description": "Foundational SCSS toolkit for scalable UI development",
5
5
  "repository": {
6
6
  "type": "git",
@@ -7,6 +7,3 @@
7
7
  @forward 'spacing';
8
8
  @forward 'theme';
9
9
  @forward 'typography';
10
-
11
- .block, %block {display: block}
12
- .hidden, %hidden {display: none}