@manuscripts/style-guide 3.5.19 → 3.5.21
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 +3 -3
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Manuscripts Style Guide
|
|
1
|
+
# Manuscripts Style Guide
|
|
2
2
|
|
|
3
|
-
React components for Manuscripts applications.
|
|
3
|
+
React components for Manuscripts applications.
|
|
4
4
|
|
|
5
5
|
## Example usage
|
|
6
6
|
|
|
@@ -16,7 +16,7 @@ const Example: React.FunctionComponent<{
|
|
|
16
16
|
)
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
## Development
|
|
19
|
+
## Development
|
|
20
20
|
|
|
21
21
|
Run `yarn build` to build the `dist` folder for distribution.
|
|
22
22
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manuscripts/style-guide",
|
|
3
3
|
"description": "Shared components for Manuscripts applications",
|
|
4
|
-
"version": "3.5.
|
|
4
|
+
"version": "3.5.21",
|
|
5
5
|
"repository": "github:Atypon-OpenSource/manuscripts-style-guide",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "dist/cjs",
|
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
"keywords": [
|
|
15
15
|
"react"
|
|
16
16
|
],
|
|
17
|
+
"sideEffects": [
|
|
18
|
+
"**/*.css"
|
|
19
|
+
],
|
|
17
20
|
"scripts": {
|
|
18
21
|
"build": "npm-run-all --parallel build:*",
|
|
19
22
|
"build:cjs": "tsc --outDir dist/cjs --module commonjs",
|