@tecsinapse/react-native-kit 1.17.3 → 1.17.6
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/CHANGELOG.md +27 -0
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.17.6](https://github.com/tecsinapse/design-system/compare/@tecsinapse/react-native-kit@1.17.5...@tecsinapse/react-native-kit@1.17.6) (2022-06-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @tecsinapse/react-native-kit
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.17.5](https://github.com/tecsinapse/design-system/compare/@tecsinapse/react-native-kit@1.17.4...@tecsinapse/react-native-kit@1.17.5) (2022-06-22)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* automation yalc for develop local ([9c6f1bb](https://github.com/tecsinapse/design-system/commit/9c6f1bbf0ea4bbacd194e4cf5c338405b94a9686))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [1.17.4](https://github.com/tecsinapse/design-system/compare/@tecsinapse/react-native-kit@1.17.3...@tecsinapse/react-native-kit@1.17.4) (2022-06-19)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @tecsinapse/react-native-kit
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [1.17.3](https://github.com/tecsinapse/design-system/compare/@tecsinapse/react-native-kit@1.17.2...@tecsinapse/react-native-kit@1.17.3) (2022-05-24)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @tecsinapse/react-native-kit
|
package/package.json
CHANGED
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tecsinapse/react-native-kit",
|
|
3
3
|
"description": "TecSinapse React Native components",
|
|
4
|
-
"version": "1.17.
|
|
4
|
+
"version": "1.17.6",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"start": "yarn build:es --watch",
|
|
10
|
+
"build:es": "cross-env BABEL_ENV=build babel src --root-mode upward --out-dir dist --source-maps --extensions .ts,.tsx --delete-dir-on-start --no-comments",
|
|
10
11
|
"build:declaration": "tsc --project tsconfig.build.json",
|
|
11
|
-
"build:
|
|
12
|
+
"build:declaration:watch": "tsc --project tsconfig.build.json --watch",
|
|
13
|
+
"yalc:push": "yalc push --changed",
|
|
14
|
+
"yalc:show": "yalc installations show $npm_package_name"
|
|
12
15
|
},
|
|
13
16
|
"dependencies": {
|
|
14
17
|
"@emotion/native": "^11.0.0",
|
|
15
18
|
"@emotion/react": "^11.4.1",
|
|
16
|
-
"@tecsinapse/react-core": "^1.16.
|
|
19
|
+
"@tecsinapse/react-core": "^1.16.4",
|
|
17
20
|
"react-native-linear-gradient": "^2.5.6"
|
|
18
21
|
},
|
|
19
22
|
"repository": {
|
|
@@ -36,5 +39,5 @@
|
|
|
36
39
|
"devDependencies": {
|
|
37
40
|
"@types/uuid": "^8.3.3"
|
|
38
41
|
},
|
|
39
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "ab944cad9dc3a840ebf3ebc9ed525926ebe3a436"
|
|
40
43
|
}
|