@onereach/styles 2.32.0 → 2.32.1-beta.2009.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/package.json +2 -3
- package/tailwind.config.js +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/styles",
|
|
3
|
-
"version": "2.32.0",
|
|
3
|
+
"version": "2.32.1-beta.2009.0",
|
|
4
4
|
"description": "Styles for or-ui-next",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"main": "./main.css",
|
|
@@ -53,6 +53,5 @@
|
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
|
-
}
|
|
57
|
-
"gitHead": "44f7f1f06a094ee1aa265fd05293740399121952"
|
|
56
|
+
}
|
|
58
57
|
}
|
package/tailwind.config.js
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
module.exports = {
|
|
2
|
+
// this file used as default config file and can be overridden on app side by creating tailwind.config.js file in
|
|
3
|
+
// the app root, this file is a problem as we need to modify in to allow tailwind usage in ui libraries
|
|
4
|
+
// TODO: Refactor this to allow to add new libs without modifying and performance loose
|
|
2
5
|
content: [
|
|
3
6
|
'./src/**/*.{vue,js,ts,jsx,tsx}',
|
|
7
|
+
'./node_modules/@onereach/service-navigation/dist/auto/**/*.{vue,js,ts,jsx,tsx}',
|
|
8
|
+
'./node_modules/@onereach/auth-ui-module/dist/auto/**/*.{vue,js,ts,jsx,tsx}',
|
|
4
9
|
'./node_modules/@onereach/ui-components/dist/auto/**/*.{vue,js,ts,jsx,tsx}',
|
|
5
10
|
],
|
|
6
|
-
|
|
7
11
|
presets: [
|
|
8
12
|
require('@onereach/styles/tailwind.config.preset.js'),
|
|
9
13
|
],
|