@decisiv/ui-components 2.0.1-alpha.217 → 2.0.1-alpha.218

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 (1) hide show
  1. package/package.json +24 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decisiv/ui-components",
3
- "version": "2.0.1-alpha.217+d821062",
3
+ "version": "2.0.1-alpha.218",
4
4
  "description": "Decisiv's design system React components",
5
5
  "author": "Decisiv UI Development Team",
6
6
  "license": "MIT",
@@ -10,15 +10,26 @@
10
10
  "lib"
11
11
  ],
12
12
  "sideEffects": false,
13
+ "jest-junit": {
14
+ "outputDirectory": "./reports/tests/junit",
15
+ "outputName": "report.xml"
16
+ },
13
17
  "scripts": {
14
- "start": "nps --no-scripts --silent",
15
- "test": "nps --no-scripts --silent test"
18
+ "build": "yarn build:types && yarn build:js && rimraf lib/**/*.test.js lib/**/__snapshots__",
19
+ "build:types": "tsc --build --force",
20
+ "build:js": "babel --root-mode upward -d lib src --extensions \".js,.ts,.tsx\" --copy-files",
21
+ "dev": "chokidar \"src/**/*.(js|jsx|ts|tsx)\" -c \"yarn build\"",
22
+ "test": "jest",
23
+ "test:ci": "yarn test --reporters=jest-junit",
24
+ "lint": "eslint --ext .js,.jsx,.ts,.tsx --ignore-pattern \"__snapshots__\" --report-unused-disable-directives src/",
25
+ "lint:ci": "yarn lint --format junit -o reports/lint/junit/report.xml",
26
+ "clean": "rimraf lib tmp tsconfig.tsbuildinfo coverage"
16
27
  },
17
28
  "dependencies": {
18
- "@decisiv/breakpoint-observer": "^1.8.8",
19
- "@decisiv/design-tokens": "^1.8.8",
20
- "@decisiv/iconix": "^2.0.0",
21
- "@decisiv/prop-types": "^1.6.9",
29
+ "@decisiv/breakpoint-observer": "1.8.9-alpha.3",
30
+ "@decisiv/design-tokens": "1.8.9-alpha.294",
31
+ "@decisiv/iconix": "2.0.1-alpha.204",
32
+ "@decisiv/prop-types": "1.6.10-alpha.3",
22
33
  "@seznam/compose-react-refs": "^1.0.2",
23
34
  "csstype": "^2.6.5",
24
35
  "element-closest": "^3.0.2",
@@ -40,8 +51,8 @@
40
51
  },
41
52
  "devDependencies": {
42
53
  "@babel/plugin-transform-runtime": "^7.5.5",
43
- "@decisiv/babel-plugin-styled-components-references": "^1.3.7",
44
- "@decisiv/styled-components-static-styles": "^1.4.2",
54
+ "@decisiv/babel-plugin-styled-components-references": "1.3.8-alpha.3",
55
+ "@decisiv/styled-components-static-styles": "1.4.3-alpha.160",
45
56
  "@testing-library/jest-dom": "^4.2.0",
46
57
  "@testing-library/react": "^8.0.1",
47
58
  "@testing-library/react-hooks": "^3.2.1",
@@ -57,19 +68,19 @@
57
68
  "jest": "^25.5.4",
58
69
  "jest-junit": "^10.0.0",
59
70
  "jest-styled-components": "7.0.2",
60
- "nps": "^5.9.5",
61
71
  "prop-types": "^15.7.2",
62
72
  "react": "^16.8.6",
63
73
  "react-dom": "^16.8.6",
64
74
  "react-is": "^16.8.6",
65
75
  "react-test-renderer": "^16.8.6",
76
+ "rimraf": "^3.0.2",
66
77
  "styled-components": "5.0.0-rc.2",
78
+ "turbo": "^2.5.2",
67
79
  "typescript": "^3.5.2"
68
80
  },
69
81
  "publishConfig": {
70
82
  "scope": "@decisiv",
71
83
  "access": "public"
72
84
  },
73
- "private": false,
74
- "gitHead": "d821062357981fac50b31a038ea39dcb08106cbf"
75
- }
85
+ "private": false
86
+ }