Skip to content

Commit ada1b4c

Browse files
farfromrefugactions-user
authored andcommitted
chore: update common files
1 parent 177b023 commit ada1b4c

File tree

4 files changed

+48
-42
lines changed

4 files changed

+48
-42
lines changed

.gitignore

Lines changed: 2 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

.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 & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,43 @@
11
{
2-
"version": "14.1.9",
3-
"packages": [
4-
"packages/*"
5-
],
6-
"npmClient": "yarn",
7-
"command": {
8-
"publish": {
9-
"conventionalCommits": true,
10-
"conventionalBlacklist": [
11-
"chore"
12-
],
13-
"changelogPreset": "angular",
14-
"createRelease": "github",
15-
"commitHooks": false,
16-
"private": false,
17-
"ignoreChanges": [
18-
"*.md",
19-
"docs/**"
20-
]
21-
},
22-
"version": {
23-
"conventionalCommits": true,
24-
"conventionalBlacklist": [
25-
"chore"
26-
],
27-
"changelogPreset": "angular",
28-
"createRelease": "github",
29-
"commitHooks": false,
30-
"private": false,
31-
"ignoreChanges": [
32-
"*.md",
33-
"docs/**"
34-
]
35-
},
36-
"bootstrap": {
37-
"npmClientArgs": [
38-
"--no-package-lock"
39-
]
2+
"version": "14.1.9",
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+
}
4042
}
41-
}
4243
}

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"demo.vue.clean": "cd ./demo-vue && ns clean",
3434
"demo.vue.ios": "cd ./demo-vue && ns run ios --no-hmr --env.watchNodeModules",
3535
"postinstall": "npm run setup",
36-
"publish": "npm run clean ; npm run build.all ; npm run readme ; npm run doc ; npm run commit_readme_doc_changes ; lerna publish",
36+
"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",
3737
"readme": "lerna run readme && node ./tools/readme.js",
3838
"setup": "npm run submodules && ts-patch install",
3939
"start": "./node_modules/.bin/ntl -A -s 15 -o",
@@ -42,7 +42,7 @@
4242
"sync.test": "node ./tools/sync.js",
4343
"tsc": "cpy '**/*.d.ts' '../plugin' --parents --cwd=src && tsc -skipLibCheck -d",
4444
"update": "node ./tools/update.js",
45-
"commit_readme_doc_changes": "git add docs *.md ; git commit -m \"readme/doc\"",
45+
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\" ; echo \"commit readme doc done\"",
4646
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'demo-*/hooks' 'demo-*/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
4747
"doc": "node tools/builddoc.mjs"
4848
},
@@ -81,6 +81,7 @@
8181
"workspaces": [
8282
"packages/*",
8383
"demo-vue",
84+
"demo-vue3",
8485
"demo-ng",
8586
"demo-svelte",
8687
"demo-react",

0 commit comments

Comments
 (0)