@trackunit/css-core 1.12.14 → 1.12.16

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/package.json +1 -1
  2. package/src/lib/core.css +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/css-core",
3
- "version": "1.12.14",
3
+ "version": "1.12.16",
4
4
  "main": "src/lib/core.css",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
package/src/lib/core.css CHANGED
@@ -16,11 +16,13 @@
16
16
  /* Load Tailwind plugins AFTER all imports */
17
17
  @plugin "@tailwindcss/typography";
18
18
 
19
- /* This loads all your source files for tailwind to watch for changes in all libs folder */
20
- @source "../../../../../libs/**/*.{ts,tsx,js,jsx,css}";
19
+ /* Support yarn with nodelinker pnpm example: node_modules/.store/@trackunit-css-core-npm-1.12.14-cc5bf62088/node_modules/@trackunit/css-core/src/lib/core.css */
20
+ @source "../../../../../../../@trackunit/**/*.{ts,tsx,js,jsx,css}";
21
+ @source "../../../../../../../../libs/**/*.{ts,tsx,js,jsx,css}";
21
22
 
22
- /* This loads all trackunit source files for tailwind to watch for changes */
23
- @source "../../../**/*.{ts,tsx,js,jsx,css}";
23
+ /* Support normal npm install example: node_modules/@trackunit/css-core/src/lib/core.css */
24
+ @source "../../../../@trackunit/**/*.{ts,tsx,js,jsx,css}";
25
+ @source "../../../../../libs/**/*.{ts,tsx,js,jsx,css}";
24
26
 
25
27
  /* Override to fix type="button" in safari */
26
28
  [type="button"] {