Skip to content

Commit 271e79b

Browse files
committed
xhore: project
1 parent be1f1eb commit 271e79b

File tree

4 files changed

+30
-42
lines changed

4 files changed

+30
-42
lines changed

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NativeScript
22
hooks/
33
node_modules/
4-
/platforms/
4+
platforms
55

66
# NativeScript Template
77
*.js.map
@@ -43,8 +43,10 @@ packages/**/*.d.ts
4343
bin
4444
build
4545
Pods
46-
!packages/platforms
46+
!packages/*/platforms
4747
/packages/**/*.aar
48+
/packages/**/*.framework
49+
/packages/**/*.xcframework
4850
/demo-snippets/**/*.aar
4951
*.xcuserdatad
5052
/packages/README.md

.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.6.4.cjs
7+
yarnPath: tools/.yarn/releases/yarn-4.0.1.cjs

lerna.json

Lines changed: 20 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,32 @@
11
{
22
"version": "1.8.11",
3+
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
34
"packages": [
45
"packages/*"
56
],
67
"npmClient": "yarn",
78
"useWorkspaces": true,
89
"command": {
910
"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"
11+
"cleanupTempFiles": true,
12+
"removePackageFields": [
13+
"devDependencies",
14+
"scripts"
4015
]
4116
}
42-
}
17+
},
18+
"npmClientArgs": [
19+
"--no-package-lock"
20+
],
21+
"commitHooks": false,
22+
"createRelease": "github",
23+
"conventionalCommits": true,
24+
"private": false,
25+
"message": "chore(release): publish new version %v",
26+
"changelogPreset": "conventional-changelog-conventionalcommits",
27+
"ignoreChanges": [
28+
"**/__fixtures__/**",
29+
"**/__tests__/**",
30+
"**/*.md"
31+
]
4332
}

package.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
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 setup && npm run clean && npm run build.all && npm run readme && npm run doc && npm run commit_readme_doc_changes ; lerna 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",
@@ -31,7 +31,7 @@
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'",
3333
"doc": "node tools/builddoc.mjs",
34-
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\""
34+
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\" ; echo \"commit readme doc done\""
3535
},
3636
"commitlint": {
3737
"extends": [
@@ -62,11 +62,6 @@
6262
},
6363
"workspaces": [
6464
"packages/*",
65-
"demo-vue",
66-
"demo-vue3",
67-
"demo-ng",
68-
"demo-svelte",
69-
"demo-react",
70-
"demo-snippets"
65+
"demo*"
7166
]
7267
}

0 commit comments

Comments
 (0)