Skip to content

Commit 36ad151

Browse files
committed
chore: project
1 parent 4cb68ea commit 36ad151

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ build
4343
Pods
4444
!packages/platforms
4545
/packages/**/*.aar
46+
/demo-snippets/**/*.aar
4647
*.xcuserdatad
4748
/packages/README.md
4849
packages/**/*js.map

lerna.json

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,43 @@
11
{
2-
"version": "6.2.19",
3-
"packages": [
2+
"version": "6.2.19",
3+
"packages": [
44
"packages/*"
55
],
66
"npmClient": "yarn",
77
"useWorkspaces": true,
88
"command": {
99
"publish": {
1010
"conventionalCommits": true,
11+
"conventionalBlacklist": [
12+
"chore"
13+
],
14+
"changelogPreset": "angular",
15+
"createRelease": "github",
16+
"commitHooks": false,
17+
"private": false,
1118
"ignoreChanges": [
12-
"ignored-file",
13-
"*.md"
19+
"*.md",
20+
"docs/**"
21+
]
22+
},
23+
"version": {
24+
"conventionalCommits": true,
25+
"conventionalBlacklist": [
26+
"chore"
27+
],
28+
"changelogPreset": "angular",
29+
"createRelease": "github",
30+
"commitHooks": false,
31+
"private": false,
32+
"ignoreChanges": [
33+
"*.md",
34+
"docs/**"
1435
]
1536
},
1637
"bootstrap": {
1738
"npmClientArgs": [
1839
"--no-package-lock"
1940
]
2041
}
21-
},
42+
}
2243
}

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@
1111
"demo.ng.android": "cd ./demo-ng && ns run android --no-hmr --env.watchNodeModules",
1212
"demo.ng.clean": "cd ./demo-ng && ns clean",
1313
"demo.ng.ios": "cd ./demo-ng && ns run ios --no-hmr --env.watchNodeModules",
14-
"publish": "npm run clean && npm run build.all && npm run readme && lerna publish --no-private --create-release=github --force-publish",
14+
"publish": "npm run clean ; npm run build.all ; npm run readme ; npm run doc ; npm run commit_readme_doc_changes ; lerna publish",
1515
"postinstall": "npm run setup",
1616
"readme": "lerna run readme && node ./tools/readme.js",
1717
"start": "./node_modules/.bin/ntl -A -s 15 -o",
1818
"submodules": "git submodule update --init",
1919
"update": "node ./tools/update.js",
2020
"doc": "node tools/builddoc.mjs",
21-
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'demo-*/hooks' 'demo-*/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'"
21+
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'demo-*/hooks' 'demo-*/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
22+
"commit_readme_doc_changes": "git add docs *.md ; git commit -m \"readme/doc\""
2223
},
2324
"repository": {
2425
"type": "git",

0 commit comments

Comments
 (0)