@coopdigital/styles 0.8.0 → 0.8.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +7 -3
package/README.md CHANGED
@@ -30,8 +30,8 @@ npm install @coopdigital/styles
30
30
 
31
31
  Import the main stylesheet and any corresponding component styles you need:
32
32
  ```
33
- import "@coopdigital/styles/dist/main.css"
34
- import "@coopdigital/styles/dist/components/Pill.css"
33
+ import "@coopdigital/styles/main.css"
34
+ import "@coopdigital/styles/components/Pill.css"
35
35
  ```
36
36
  All CSS files have been processed to include vendor prefixes for supported browsers and have been minified.
37
37
 
package/package.json CHANGED
@@ -1,14 +1,18 @@
1
1
  {
2
2
  "name": "@coopdigital/styles",
3
3
  "type": "module",
4
- "version": "0.8.0",
4
+ "version": "0.8.1",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
9
+ "exports": {
10
+ "./*": "./dist/*",
11
+ "./src/*": "./src/*"
12
+ },
9
13
  "files": [
10
14
  "dist",
11
- "src"
15
+ "src/**/*.scss"
12
16
  ],
13
17
  "keywords": [
14
18
  "co-op",
@@ -32,5 +36,5 @@
32
36
  "lightningcss": "^1.29.3",
33
37
  "sass-embedded": "^1.86.0"
34
38
  },
35
- "gitHead": "d113e05914bad6b718e531e27c21a6db1c58f774"
39
+ "gitHead": "6e0b8a1a021138c3f9bd92e8aadd523c1cf4a2f5"
36
40
  }