dga-ui-react 1.5.2 → 1.6.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dga-ui-react",
3
- "version": "1.5.2",
3
+ "version": "1.6.1",
4
4
  "description": "DGA ui library",
5
5
  "author": "Ashraf Ainia",
6
6
  "license": "MIT",
@@ -9,7 +9,7 @@
9
9
  "types": "dist/index.d.ts",
10
10
  "scripts": {
11
11
  "test": "jest",
12
- "build": "rm -rf dist && rm -rf charts && rollup -c --bundleConfigAsCjs && cp src/components/charts/package.json charts/package.json",
12
+ "build": "rm -rf dist && rm -rf charts && rm -rf Metric && rollup -c --bundleConfigAsCjs && cp src/components/charts/package.json charts/package.json && cp src/components/Metric/package.json Metric/package.json",
13
13
  "release": "npm run build && npm publish",
14
14
  "storybook": "storybook dev -p 6006",
15
15
  "dev": "storybook dev -p 6006"
package/.prettierrc.json DELETED
@@ -1,19 +0,0 @@
1
- {
2
- "arrowParens": "always",
3
- "bracketSpacing": true,
4
- "endOfLine": "lf",
5
- "htmlWhitespaceSensitivity": "css",
6
- "insertPragma": false,
7
- "jsxBracketSameLine": false,
8
- "jsxSingleQuote": false,
9
- "printWidth": 110,
10
- "proseWrap": "preserve",
11
- "quoteProps": "as-needed",
12
- "requirePragma": false,
13
- "semi": true,
14
- "singleQuote": false,
15
- "tabWidth": 2,
16
- "trailingComma": "es5",
17
- "useTabs": false,
18
- "vueIndentScriptAndStyle": false
19
- }