@tsmodule/tsmodule 43.2.0 → 43.3.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/README.md +2 -2
- package/dist/bin.js +23 -23
- package/dist/index.js +14 -14
- package/package.json +1 -1
package/README.md
CHANGED
@@ -160,11 +160,11 @@ CSS will be bundled from `src/components/index.css` and exported at `my-package/
|
|
160
160
|
|
161
161
|
```json
|
162
162
|
{
|
163
|
-
"style": "./dist/
|
163
|
+
"style": "./dist/components/index.css",
|
164
164
|
"exports": {
|
165
165
|
".": "./dist/index.js",
|
166
166
|
"./*": "./dist/components/*/index.js",
|
167
|
-
"./styles": "./dist/
|
167
|
+
"./styles": "./dist/components/index.css",
|
168
168
|
"./styles/*": "./dist/components/*/index.css",
|
169
169
|
"./package.json": "./package.json"
|
170
170
|
},
|