Skip to content

Commit 6d24cf3

Browse files
committed
chore: project
1 parent 503ed05 commit 6d24cf3

File tree

6 files changed

+35
-10
lines changed

6 files changed

+35
-10
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ nmHoistingLimits: workspaces
22

33
nodeLinker: node-modules
44

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

lerna.json

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "3.1.15",
23
"packages": [
34
"packages/*"
45
],
@@ -7,16 +8,36 @@
78
"command": {
89
"publish": {
910
"conventionalCommits": true,
11+
"conventionalBlacklist": [
12+
"chore"
13+
],
14+
"changelogPreset": "angular",
15+
"createRelease": "github",
16+
"commitHooks": false,
17+
"private": false,
1018
"ignoreChanges": [
11-
"ignored-file",
12-
"*.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/**"
1335
]
1436
},
1537
"bootstrap": {
1638
"npmClientArgs": [
1739
"--no-package-lock"
1840
]
1941
}
20-
},
21-
"version": "3.1.15"
42+
}
2243
}

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@
1010
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'demo-*/hooks' 'demo-*/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
1111
"commitmsg": "commitlint -e $GIT_PARAMS",
1212
"postinstall": "npm run setup",
13-
"publish": "npm run clean && npm run build.all && npm run readme && lerna publish --no-private --create-release=github --force-publish",
13+
"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",
1414
"readme": "lerna run readme && node ./tools/readme.js",
1515
"setup": "npm run submodules && ts-patch install",
1616
"start": "./node_modules/.bin/ntl -A -s 15 -o",
1717
"submodules": "git submodule update --init",
1818
"sync": "node ./tools/sync.js",
1919
"tsc": "cpy '**/*.d.ts' '../plugin' --parents --cwd=src && tsc -skipLibCheck -d",
2020
"update": "node ./tools/update.js",
21-
"doc": "node tools/builddoc.mjs"
21+
"doc": "node tools/builddoc.mjs",
22+
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\""
2223
},
2324
"repository": {
2425
"type": "git",
@@ -77,8 +78,8 @@
7778
},
7879
"workspaces": [
7980
"packages/*",
80-
"demo",
8181
"demo-vue",
82+
"demo-vue3",
8283
"demo-ng",
8384
"demo-svelte",
8485
"demo-react",

0 commit comments

Comments
 (0)