@uniai-fe/uds-templates 0.0.7 → 0.0.8
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 +8 -5
- package/dist/styles.css +3679 -0
- package/package.json +8 -4
- package/src/index.scss +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniai-fe/uds-templates",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "UNIAI Design System; UI Templates Package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -23,19 +23,23 @@
|
|
|
23
23
|
"url": "https://github.com/GraffitoRyu"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
|
-
"src"
|
|
26
|
+
"src",
|
|
27
|
+
"dist"
|
|
27
28
|
],
|
|
28
29
|
"main": "./src/index.tsx",
|
|
29
30
|
"module": "./src/index.tsx",
|
|
30
31
|
"exports": {
|
|
31
|
-
".": "./src/index.tsx"
|
|
32
|
+
".": "./src/index.tsx",
|
|
33
|
+
"./styles": "./src/index.scss",
|
|
34
|
+
"./css": "./dist/styles.css"
|
|
32
35
|
},
|
|
33
36
|
"scripts": {
|
|
34
37
|
"format": "prettier --write .",
|
|
35
38
|
"format:check": "prettier --check .",
|
|
36
39
|
"lint": "eslint . --max-warnings=0",
|
|
37
40
|
"typecheck": "tsc --project tsconfig.build.json --noEmit",
|
|
38
|
-
"build": "pnpm format && pnpm typecheck",
|
|
41
|
+
"build": "pnpm format && pnpm typecheck && pnpm css:build",
|
|
42
|
+
"css:build": "sass --load-path=node_modules src/index.scss dist/styles.css --style=expanded --no-source-map",
|
|
39
43
|
"dev": "tsc --project tsconfig.build.json --watch --noEmit",
|
|
40
44
|
"module:lint": "pnpm lint",
|
|
41
45
|
"module:typecheck": "pnpm typecheck",
|
package/src/index.scss
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
@use "@uniai-fe/uds-primitives/styles";
|
|
2
|
+
|
|
3
|
+
/* 템플릿 레벨 스타일을 통합해 서비스 앱이 단일 엔트리만 import하도록 구성한다. */
|
|
4
|
+
@use "./components/page-frame/container/index.scss" as *;
|
|
5
|
+
@use "./components/page-frame/mobile/index.scss" as *;
|
|
6
|
+
@use "./components/page-frame/navigation/index.scss" as *;
|