Skip to content

Commit 82273be

Browse files
committed
chore: project
1 parent 0cf80b4 commit 82273be

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
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: .yarn/releases/yarn-3.6.3.cjs
5+
yarnPath: tools/.yarn/releases/yarn-3.6.4.cjs

lerna.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"commitHooks": false,
1717
"private": false,
1818
"ignoreChanges": [
19-
"*.md"
19+
"*.md",
20+
"docs/**"
2021
]
2122
},
2223
"version": {
@@ -29,7 +30,8 @@
2930
"commitHooks": false,
3031
"private": false,
3132
"ignoreChanges": [
32-
"*.md"
33+
"*.md",
34+
"docs/**"
3335
]
3436
},
3537
"bootstrap": {

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"plugin.watch.android": "npm i && npm-watch build.android",
2020
"plugin.watch.ios": "npm i && npm-watch build.ios",
2121
"plugin.watch": "npm run plugin.watch.tsc & npm run plugin.watch.android & npm run plugin.watch.ios",
22-
"publish": "npm run clean && npm run build.all && npm run readme && npm run doc && lerna publish",
22+
"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",
2323
"sync": "node ./tools/sync.js",
2424
"commitmsg": "commitlint -e $GIT_PARAMS",
2525
"build.all": "npm run build",
@@ -32,7 +32,8 @@
3232
"readme": "lerna run readme && node ./tools/readme.js",
3333
"start": "./node_modules/.bin/ntl -A -s 15 -o",
3434
"submodules": "git submodule update --init",
35-
"update": "node ./tools/update.js"
35+
"update": "node ./tools/update.js",
36+
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\""
3637
},
3738
"devDependencies": {
3839
"@nativescript-community/arraybuffers": "^1.1.3",
@@ -85,6 +86,7 @@
8586
"workspaces": [
8687
"packages/*",
8788
"demo-vue",
89+
"demo-vue3",
8890
"demo-ng",
8991
"demo-svelte",
9092
"demo-react",

0 commit comments

Comments
 (0)