ez-vid-ang 21.2.1 → 21.2.2
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 +13 -0
- package/fesm2022/ez-vid-ang.mjs +938 -513
- package/fesm2022/ez-vid-ang.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ez-vid-ang.d.ts +357 -208
package/README.md
CHANGED
|
@@ -158,6 +158,19 @@ export class HomePage {}
|
|
|
158
158
|
|
|
159
159
|
```
|
|
160
160
|
|
|
161
|
+
## Development
|
|
162
|
+
|
|
163
|
+
### Linting
|
|
164
|
+
|
|
165
|
+
The project uses a strict ESLint configuration with type-aware TypeScript rules and Angular-specific template rules. All available rule presets are enabled.
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
npm run lint # Check for errors
|
|
169
|
+
npx ng lint --fix # Auto-fix fixable errors
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
All magic numbers are centralized in `src/lib/constants.ts`. See [linting documentation](documentation/core/linting.md) and [constants documentation](documentation/core/constants.md) for details.
|
|
173
|
+
|
|
161
174
|
## Components
|
|
162
175
|
|
|
163
176
|
Library has four groups of components. You can click on the name to go to the documentation:
|