@alfalab/bridge-to-native 0.0.4 → 0.0.5-beta-e3701a9
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 +6 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"license": "UNLICENSED",
|
|
3
3
|
"name": "@alfalab/bridge-to-native",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.5-beta-e3701a9",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/core-ds/bridge-to-native.git"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"description": "Утилита для удобной работы веб приложения внутри нативного приложения и коммуникации с ним.",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "yarn compile",
|
|
15
|
-
"changelog": "bash bin/fill-changelog-file.sh",
|
|
15
|
+
"changelog": "bash bin/fill-changelog-file-and-notify-github.sh",
|
|
16
16
|
"compile": "yarn compile:clean && yarn compile:ts && yarn compile:copy-resources",
|
|
17
17
|
"compile:copy-package-json": "shx cp package.json .publish/package.json",
|
|
18
18
|
"compile:copy-resources": "yarn copyfiles -e \"**/*.{[jt]s*(x),snap}\" -e \"**/*.json\" -e \"src/mock/**/*\" -u 1 \"src/**/*\" .publish",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"lint:scripts": "eslint \"**/*.{js,jsx,ts,tsx}\" --ext .js,.jsx,.ts,.tsx",
|
|
23
23
|
"lint": "yarn lint:scripts && prettier --check \"./src/*.{ts,tsx,js,jsx,json}\"",
|
|
24
24
|
"lint:fix": "yarn lint:scripts --fix",
|
|
25
|
-
"pub": "npm publish .publish --userconfig \"../.npmrc\" --tag \"$TAG\"
|
|
25
|
+
"pub": "npm publish .publish --userconfig \"../.npmrc\" --tag \"$TAG\"",
|
|
26
26
|
"format": "prettier --write \"./**/*.{ts,tsx,js,jsx,css,json}\"",
|
|
27
27
|
"test": "jest --silent --collect-coverage",
|
|
28
28
|
"release": "yarn compile && npm version \"$VERSION\" --no-git-tag-version && yarn compile:copy-package-json && yarn pub"
|
|
@@ -41,12 +41,8 @@
|
|
|
41
41
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
42
42
|
"eslint-config-prettier": "^8.5.0",
|
|
43
43
|
"eslint-import-resolver-typescript": "~3.1.5",
|
|
44
|
-
"eslint-plugin-cypress": "^2.12.1",
|
|
45
44
|
"eslint-plugin-dirnames": "^1.0.3",
|
|
46
45
|
"eslint-plugin-import": "^2.26.0",
|
|
47
|
-
"eslint-plugin-jsx-a11y": "^6.6.1",
|
|
48
|
-
"eslint-plugin-react": "^7.30.1",
|
|
49
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
50
46
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
51
47
|
"eslint-plugin-unicorn": "^42.0.0",
|
|
52
48
|
"husky": "^4.3.8",
|
|
@@ -100,5 +96,8 @@
|
|
|
100
96
|
},
|
|
101
97
|
"commitlint": {
|
|
102
98
|
"extends": "./node_modules/arui-presets-lint/commitlint"
|
|
99
|
+
},
|
|
100
|
+
"publishConfig": {
|
|
101
|
+
"registry": "https://registry.npmjs.org"
|
|
103
102
|
}
|
|
104
103
|
}
|