@filip.mazev/blocks-core 0.0.32 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -4,6 +4,18 @@
4
4
 
5
5
  **Blocks Core** is the foundational library for the Blocks ecosystem. It provides the essential infrastructure for building responsive, theme-aware Angular applications. It bridges the gap between TypeScript logic and SCSS styling, offering a unified system for breakpoints, device detection, scroll management and theming.
6
6
 
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm i @filip.mazev/blocks-core@latest
11
+ ```
12
+
13
+ Or with the global blocks `ng` command which adds all blocks packages and sets up your styles.scss
14
+
15
+ ```bash
16
+ ng add @filip.mazev/blocks@latest
17
+ ```
18
+
7
19
  ## Styles & Theming
8
20
 
9
21
  Blocks Core utilizes a robust SCSS architecture to manage design tokens and responsiveness.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@filip.mazev/blocks-core",
3
- "version": "0.0.32",
3
+ "version": "1.0.2",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  "./mixins": "./lib/styles/_mixins.scss",
@@ -27,6 +27,9 @@
27
27
  "dependencies": {
28
28
  "tslib": "^2.3.0"
29
29
  },
30
+ "bin": {
31
+ "blocks-init": "./bin/setup.js"
32
+ },
30
33
  "sideEffects": false,
31
34
  "module": "fesm2022/filip.mazev-blocks-core.mjs",
32
35
  "typings": "types/filip.mazev-blocks-core.d.ts"