Skip to content

Commit 3b96bb8

Browse files
author
farfromrefug
committed
chore: project
1 parent 75a2970 commit 3b96bb8

File tree

5 files changed

+41
-27
lines changed

5 files changed

+41
-27
lines changed

.gitignore

Lines changed: 2 additions & 4 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,10 +43,8 @@ packages/**/*.d.ts
4343
bin
4444
build
4545
Pods
46-
!packages/*/platforms
46+
!packages/platforms
4747
/packages/**/*.aar
48-
/packages/**/*.framework
49-
/packages/**/*.xcframework
5048
/demo-snippets/**/*.aar
5149
*.xcuserdatad
5250
/packages/README.md

demo-vue

lerna.json

Lines changed: 31 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,43 @@
11
{
22
"version": "5.3.20",
3-
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
43
"packages": [
54
"packages/*"
65
],
76
"npmClient": "yarn",
87
"useWorkspaces": true,
98
"command": {
109
"publish": {
11-
"cleanupTempFiles": true,
12-
"removePackageFields": [
13-
"devDependencies",
14-
"scripts"
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"
1540
]
1641
}
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-
]
42+
}
3243
}

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@
8686
},
8787
"workspaces": [
8888
"packages/*",
89-
"demo*"
89+
"demo-vue",
90+
"demo-vue3",
91+
"demo-ng",
92+
"demo-svelte",
93+
"demo-react",
94+
"demo-snippets"
9095
]
9196
}

0 commit comments

Comments
 (0)