Skip to content

Commit 8741491

Browse files
committed
chore: project
1 parent 34d6a7d commit 8741491

File tree

4 files changed

+30
-10
lines changed

4 files changed

+30
-10
lines changed

.gitignore

+1
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

+25-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "7.0.36",
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": "7.0.36"
42+
}
2243
}

package.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,16 @@
3737
"demo.vue3.clean": "cd ./demo-vue3 && ns clean",
3838
"demo.vue3.ios": "cd ./demo-vue3 && ns run ios --no-hmr --env.watchNodeModules",
3939
"postinstall": "npm run setup",
40-
"publish": "npm run clean && npm run build.all && npm run readme && npm run doc && lerna publish --no-private --create-release=github --force-publish",
40+
"publish": "npm run clean ; npm run build.all ; npm run readme ; npm run doc ; npm run commit_readme_doc_changes ; lerna publish",
4141
"readme": "lerna run readme && node ./tools/readme.js",
4242
"setup": "npm run submodules && ts-patch install",
4343
"start": "./node_modules/.bin/ntl -A -s 15 -o",
4444
"submodules": "git submodule update --init",
4545
"submodules.update": "git submodule -q foreach git pull -q origin master && git add .",
4646
"sync": "node ./tools/sync.js",
4747
"update": "node ./tools/update.js",
48-
"doc": "node tools/builddoc.mjs"
48+
"doc": "node tools/builddoc.mjs",
49+
"commit_readme_doc_changes": "git add docs *.md ; git commit -m \"readme/doc\""
4950
},
5051
"keywords": [
5152
"NativeScript",
@@ -81,15 +82,12 @@
8182
"demo.svelte.ios": "Runs the Svelte demo on iOS.",
8283
"demo.vue.android": "Runs the Vue demo on Android.",
8384
"demo.vue.ios": "Runs the Vue demo on iOS.",
84-
"demo.vue3.android": "Runs the Vue3 demo on Android.",
85-
"demo.vue3.ios": "Runs the Vue3 demo on iOS.",
8685
"watch": "Watch for changes in the plugin source and re-build."
8786
}
8887
},
8988
"workspaces": [
9089
"packages/*",
9190
"demo-vue",
92-
"demo-vue3",
9391
"demo-ng",
9492
"demo-svelte",
9593
"demo-react",

tools

0 commit comments

Comments
 (0)