@minimorphism/mds-ui 1.0.0 → 1.0.1
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/package.json +13 -3
package/Readme.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
## Manifest
|
|
8
8
|
Before you start working with components, be sure to familiarize yourself with our *philosophy*:
|
|
9
9
|
|
|
10
|
-
**[minimorphism manifesto](
|
|
10
|
+
**[minimorphism manifesto](https://github.com/minimorphism/mds-ui/blob/main/Manifest/Manifest.md)**
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
## Architecture
|
|
@@ -43,7 +43,7 @@ Before implementing *components* in your projects, you must complete several ste
|
|
|
43
43
|
|
|
44
44
|
1. Install npm package
|
|
45
45
|
```bash
|
|
46
|
-
npm
|
|
46
|
+
npm i @minimorphism/mds-ui
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
### Init Singleton WebGL Canvas layer
|
package/package.json
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minimorphism/mds-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com"
|
|
7
|
+
},
|
|
4
8
|
"type": "module",
|
|
5
9
|
"private": false,
|
|
6
10
|
"main": "dist/index.js",
|
|
7
11
|
"module": "dist/index.js",
|
|
8
12
|
"types": "dist/index.d.ts",
|
|
9
|
-
"files": [
|
|
10
|
-
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"sideEffects": [
|
|
17
|
+
"**/*.css",
|
|
18
|
+
"**/*.scss",
|
|
19
|
+
"src/**/*Shader.ts"
|
|
20
|
+
],
|
|
11
21
|
"exports": {
|
|
12
22
|
".": {
|
|
13
23
|
"types": "./dist/index.d.ts",
|