@skeletonizer/utils 0.0.8-alpha.0 → 0.0.10-alpha.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 +18 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,8 +9,8 @@ Roughly speaking, the usage of skeleton in the template boils down to the follow
|
|
|
9
9
|
- optional `colorSchema` - the color schema configuration for the skeleton
|
|
10
10
|
|
|
11
11
|
The actual usage depends on the adapter you are using. For more info, refer to docs for the specific adapter:
|
|
12
|
-
- [Vue](packages/vue/README.md)
|
|
13
|
-
- [Angular](packages/angular/README.md)
|
|
12
|
+
- [Vue](/packages/vue/README.md)
|
|
13
|
+
- [Angular](/packages/angular/README.md)
|
|
14
14
|
|
|
15
15
|
## SkeletonAbstractComponent
|
|
16
16
|
This is an abstract class that:
|
|
@@ -132,3 +132,19 @@ export interface ISkeletonizerColorSchema {
|
|
|
132
132
|
}
|
|
133
133
|
```
|
|
134
134
|
Roughly speaking, the background colour of the skeletonized area transitions between the `primaryColor` and the `secondaryColor`.
|
|
135
|
+
|
|
136
|
+
## Contributing
|
|
137
|
+
Adjustments in this package have ramifications on all other packages, so please be careful when making changes.
|
|
138
|
+
- `npm install`
|
|
139
|
+
- adjust the code in the `packages/utils` directory
|
|
140
|
+
- run `npm run build` in the `packages/utils` directory
|
|
141
|
+
- adjust the code in adapter packages directories, if needed
|
|
142
|
+
- `npm run dev` in in each of the adapter packages directories to test the changes
|
|
143
|
+
- run `npm run build` in the root directory
|
|
144
|
+
- update readme files in the `packages/utils` and adapter packages directories
|
|
145
|
+
|
|
146
|
+
Before submitting a pull request, make sure to run the following commands in **root** directory:
|
|
147
|
+
- `npm run lint`
|
|
148
|
+
- `npm run type-check`
|
|
149
|
+
- `npm run coverage`
|
|
150
|
+
- `npm run build`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skeletonizer/utils",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10-alpha.0",
|
|
4
4
|
"description": "Utils for all skeletonizer packages",
|
|
5
5
|
"author": "Luka Varga",
|
|
6
6
|
"license": "MIT",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"vite-plugin-dts": "^3.8.1",
|
|
53
53
|
"vitest": "1.5.1"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "3cfb823e233c3b596348d628c8d561b02f5d7ca7"
|
|
56
56
|
}
|