Skip to content

Commit 81c6c03

Browse files
farfromrefugactions-user
authored andcommitted
chore: update common files
1 parent d68bfe0 commit 81c6c03

File tree

4 files changed

+50
-13
lines changed

4 files changed

+50
-13
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ yarn-error.log*
2424
.gradle
2525
.project
2626
.yarn
27+
.cxx
2728
tmp/
2829

2930
!.eslintrc.js
@@ -34,6 +35,7 @@ tmp/
3435
devices.js
3536

3637
*.framework
38+
*.xcframework
3739
**/*.js.map
3840
src/**/*.js
3941
packages/**/*.js
@@ -43,6 +45,7 @@ build
4345
Pods
4446
!packages/platforms
4547
/packages/**/*.aar
48+
/demo-snippets/**/*.aar
4649
*.xcuserdatad
4750
/packages/README.md
4851
packages/**/*js.map

.yarnrc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
compressionLevel: mixed
2+
13
nmHoistingLimits: workspaces
24

35
nodeLinker: node-modules
46

5-
yarnPath: tools/.yarn/releases/yarn-3.3.1.cjs
7+
yarnPath: tools/.yarn/releases/yarn-4.0.1.cjs

lerna.json

Lines changed: 40 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,43 @@
11
{
2-
"packages": [
3-
"packages/*"
4-
],
5-
"version": "1.8.15",
6-
"npmClient": "yarn",
7-
"useWorkspaces": true,
8-
"command": {
9-
"publish": {
10-
"conventionalCommits": true
2+
"version": "1.8.15",
3+
"packages": [
4+
"packages/*"
5+
],
6+
"npmClient": "yarn",
7+
"useWorkspaces": true,
8+
"command": {
9+
"publish": {
10+
"conventionalCommits": true,
11+
"conventionalBlacklist": [
12+
"chore"
13+
],
14+
"changelogPreset": "angular",
15+
"createRelease": "github",
16+
"commitHooks": false,
17+
"private": false,
18+
"ignoreChanges": [
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/**"
35+
]
36+
},
37+
"bootstrap": {
38+
"npmClientArgs": [
39+
"--no-package-lock"
40+
]
41+
}
1142
}
12-
}
1343
}

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,16 @@
2222
"demo.vue.ios": "cd ./demo-vue && ns run ios --no-hmr --env.watchNodeModules",
2323
"demo.vue.clean": "cd ./demo-vue && ns clean",
2424
"postinstall": "npm run setup",
25-
"publish": "npm run clean && npm run build.all && npm run readme && lerna publish --no-private --create-release=github --force-publish",
25+
"publish": "npm run setup && npm run clean && npm run build.all && npm run readme && npm run doc && npm run commit_readme_doc_changes && lerna publish",
2626
"readme": "lerna run readme && node ./tools/readme.js",
2727
"setup": "npm run submodules && ts-patch install",
2828
"start": "./node_modules/.bin/ntl -A -s 15 -o",
2929
"submodules": "git submodule update --init",
3030
"sync": "node ./tools/sync.js",
3131
"update": "node ./tools/update.js",
3232
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'demo-*/hooks' 'demo-*/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
33-
"doc": "node tools/builddoc.mjs"
33+
"doc": "node tools/builddoc.mjs",
34+
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\" ; echo \"commit readme doc done\""
3435
},
3536
"commitlint": {
3637
"extends": [
@@ -62,6 +63,7 @@
6263
"workspaces": [
6364
"packages/*",
6465
"demo-vue",
66+
"demo-vue3",
6567
"demo-ng",
6668
"demo-svelte",
6769
"demo-react",

0 commit comments

Comments
 (0)