Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"npm": { "publish": true, "skipChecks": true },
"hooks": {
"after:bump": "yarn build",
"before:git:release": "yarn expo prebuild --no-install && git restore package.json && git add ."
"before:git:release": "yarn expo prebuild --no-install && git restore package.json && git add .",
"before:npm:release": "jq '. + {types: .publishConfig.types, main: .publishConfig.main}' package.json > package.json.tmp && mv package.json.tmp package.json"
},
"plugins": {
"@release-it/conventional-changelog": {
Expand Down
8 changes: 8 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@
yarn install
```

```shell
bundle install
```

```shell
yarn pod-install
```

### Запуск проекта

**Storybook:**
Expand Down
16 changes: 5 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"ui-kit",
"uikit"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
"access": "public",
"types": "./dist/index.d.ts",
"main": "./dist/index.js"
},
"files": [
"dist"
Expand All @@ -38,7 +38,8 @@
"prettier:check": "prettier . --check",
"prettier:fix": "prettier . --write",
"prettier:watch": "onchange . -- prettier --write --ignore-unknown \"{{changed}}\"",
"release": "release-it"
"release": "release-it",
"pod-install": "bundle exec pod install --project-directory=ios"
},
"devDependencies": {
"@babel/core": "7.28.3",
Expand Down Expand Up @@ -144,13 +145,6 @@
}
},
"expo": {
"autolinking": {
"ios": {
"searchPaths": [
"./node_modules"
]
}
},
"doctor": {
"appConfigFieldsNotSyncedCheck": {
"enabled": false
Expand Down
Loading