pankosmia-rcl 0.3.0 → 0.4.0
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 +20 -1
- package/exported-rcl/index.html +17 -0
- package/{build → exported-rcl}/pankosmia-rcl.es.js +3 -1
- package/{build → exported-rcl}/pankosmia-rcl.umd.js +65 -65
- package/package.json +9 -10
- package/.prettierignore +0 -2
- package/vite.config.js +0 -39
- /package/{build → exported-rcl}/manifest.json +0 -0
- /package/{build → exported-rcl}/pankosmia-rcl.es.js.map +0 -0
- /package/{build → exported-rcl}/pankosmia-rcl.umd.js.map +0 -0
package/README.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
1
|
# core-client-rcl
|
|
2
2
|
|
|
3
|
-
A React Component Library
|
|
3
|
+
A React Component Library for Pankosmia.
|
|
4
|
+
|
|
5
|
+
## Build
|
|
6
|
+
|
|
7
|
+
`bash
|
|
8
|
+
npm run build
|
|
9
|
+
`
|
|
10
|
+
|
|
11
|
+
This uses Vite to create two folders:
|
|
12
|
+
|
|
13
|
+
- **`build`** — used by the app
|
|
14
|
+
- **`exported-rcl`** — what will be published to npm
|
|
15
|
+
|
|
16
|
+
## Debugging
|
|
17
|
+
|
|
18
|
+
To check which files will be exported before publishing, run:
|
|
19
|
+
|
|
20
|
+
`bash
|
|
21
|
+
npm pack --dry-run
|
|
22
|
+
`
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<link rel="icon" href="/api/clients/main/favicon.ico" />
|
|
6
|
+
<link rel="stylesheet" href="/api/webfonts/_webfonts.css" />
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
8
|
+
<meta name="theme-color" content="#000000" />
|
|
9
|
+
<meta name="description" content="Pankosmia" />
|
|
10
|
+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
|
11
|
+
<title>Pankosmia</title>
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
15
|
+
<div id="root"></div>
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
|
@@ -31936,6 +31936,8 @@ export {
|
|
|
31936
31936
|
U1 as languagesContext,
|
|
31937
31937
|
S1 as messagesContext,
|
|
31938
31938
|
cr as netContext,
|
|
31939
|
-
|
|
31939
|
+
E1 as snippetContext,
|
|
31940
|
+
x1 as typographyContext,
|
|
31941
|
+
O1 as wordContext
|
|
31940
31942
|
};
|
|
31941
31943
|
//# sourceMappingURL=pankosmia-rcl.es.js.map
|