linear-react-components-ui 1.1.0 → 1.1.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/.gitlab-ci.yml +10 -3
- package/lib/assets/styles/tabs.scss +2 -0
- package/package.json +5 -2
package/.gitlab-ci.yml
CHANGED
|
@@ -2,18 +2,25 @@ stages:
|
|
|
2
2
|
- lint
|
|
3
3
|
- tests-units
|
|
4
4
|
|
|
5
|
+
cache:
|
|
6
|
+
key:
|
|
7
|
+
files:
|
|
8
|
+
- package-lock.json
|
|
9
|
+
paths:
|
|
10
|
+
- .npm
|
|
11
|
+
|
|
5
12
|
lint:
|
|
6
13
|
stage: lint
|
|
7
14
|
image: node:20.11.0
|
|
8
15
|
before_script:
|
|
9
|
-
- npm
|
|
16
|
+
- npm ci --legacy-peer-deps --cache .npm --prefer-offline
|
|
10
17
|
script:
|
|
11
|
-
- npm run check:js
|
|
18
|
+
- npm run check:js
|
|
12
19
|
|
|
13
20
|
units:
|
|
14
21
|
stage: tests-units
|
|
15
22
|
image: node:20.11.0
|
|
16
23
|
before_script:
|
|
17
|
-
- npm
|
|
24
|
+
- npm ci --legacy-peer-deps --cache .npm --prefer-offline
|
|
18
25
|
script:
|
|
19
26
|
- npm run test
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linear-react-components-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Linear Sistemas ReactJs Components",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/index.cjs",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"@testing-library/jest-dom": "5.16.5",
|
|
70
70
|
"@testing-library/react": "14.1.2",
|
|
71
71
|
"@testing-library/user-event": "14.4.3",
|
|
72
|
-
"@types/lodash": "
|
|
72
|
+
"@types/lodash": "4.14.191",
|
|
73
73
|
"@types/node": "17.0.45",
|
|
74
74
|
"@types/react": "18.0.26",
|
|
75
75
|
"@types/react-dev-utils": "^9.0.11",
|
|
@@ -78,6 +78,8 @@
|
|
|
78
78
|
"@types/react-syntax-highlighter": "15.5.6",
|
|
79
79
|
"@types/react-transition-group": "4.4.5",
|
|
80
80
|
"@types/uuid": "8.3.4",
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "6.21.0",
|
|
82
|
+
"@typescript-eslint/parser": "6.21.0",
|
|
81
83
|
"babel-eslint": "7.2.3",
|
|
82
84
|
"babel-jest": "29.7.0",
|
|
83
85
|
"babel-loader": "9.1.3",
|
|
@@ -103,6 +105,7 @@
|
|
|
103
105
|
"react-transition-group": "^4.4.2",
|
|
104
106
|
"resize-observer-polyfill": "1.5.1",
|
|
105
107
|
"resolve-url-loader": "5.0.0",
|
|
108
|
+
"sass": "1.74.1",
|
|
106
109
|
"sass-loader": "14.1.0",
|
|
107
110
|
"style-loader": "3.3.4",
|
|
108
111
|
"tsup": "8.0.1",
|