Skip to content

Commit 41611c2

Browse files
committed
chore: priject
1 parent e86efbd commit 41611c2

File tree

9 files changed

+25
-26
lines changed

9 files changed

+25
-26
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ yarn-error.log*
2525
.project
2626
.yarn
2727
tmp/
28+
package-lock.json
29+
yarn.lock
2830

2931
!.eslintrc.js
3032
!.prettierrc.js
@@ -52,5 +54,6 @@ packages/*.ngsummary.json
5254
packages/*.metadata.json
5355
packages/angular
5456
packages/typings
57+
pnpm-lock.yaml
5558

5659
/blueprint.md

.npmrc

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
shamefully-hoist=true
2-
public-hoist-pattern[]=*eslint*
3-
public-hoist-pattern[]=source-map-support
4-
public-hoist-pattern[]=ts-patch
5-
public-hoist-pattern[]=typescript
6-
public-hoist-pattern[]=cpy-cli
72
strict-peer-dependencies=false
8-
shell-emulator=true
9-
auto-install-peers=false
103
loglevel=error
114
engine-strict=true

demo-ng

demo-react

demo-vue

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,31 +14,31 @@
1414
"build": "lerna run build",
1515
"build.all": "lerna run build.all",
1616
"build.angular": "lerna run build.angular",
17-
"clean": "rimraf 'packages/**/*.d.ts' 'packages/**/*.js' 'packages/**/*.js.map' 'packages/**/*.metada' 'packages/**/angular/ng-package.json'",
17+
"clean": "rimraf 'packages/**/*.d.ts' 'packages/**/*.js' 'packages/**/*.js.map' 'packages/**/*.metadata.json' 'packages/**/*.ngsummary.json' 'packages/**/*.mjs' 'packages/**/*.mjs.map' 'packages/**/node_modules' 'packages/**/angular/package.json' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
1818
"commitmsg": "commitlint -e $GIT_PARAMS",
19-
"demo.ng.android": "cd ./demo-ng && ns run android --no-hmr --env.watchNodeModules",
19+
"demo.ng.android": "cd ./demo-ng && ns run android --no-hmr",
2020
"demo.ng.clean": "cd ./demo-ng && ns clean",
21-
"demo.ng.ios": "cd ./demo-ng && ns run ios --no-hmr --env.watchNodeModules",
22-
"demo.react.android": "cd ./demo-react && ns run android --no-hmr --env.watchNodeModules",
21+
"demo.ng.ios": "cd ./demo-ng && ns run ios --no-hmr",
22+
"demo.react.android": "cd ./demo-react && ns run android --no-hmr",
2323
"demo.react.clean": "cd ./demo-react && ns clean",
24-
"demo.react.ios": "cd ./demo-react && ns run ios --no-hmr --env.watchNodeModules",
25-
"demo.svelte.android": "cd ./demo-svelte && ns run android --no-hmr --env.watchNodeModules",
24+
"demo.react.ios": "cd ./demo-react && ns run ios --no-hmr",
25+
"demo.svelte.android": "cd ./demo-svelte && ns run android --no-hmr",
2626
"demo.svelte.clean": "cd ./demo-svelte && ns clean",
27-
"demo.svelte.ios": "cd ./demo-svelte && ns run ios --no-hmr --env.watchNodeModules",
28-
"demo.vue.android": "cd ./demo-vue && ns run android --no-hmr --env.watchNodeModules",
27+
"demo.svelte.ios": "cd ./demo-svelte && ns run ios --no-hmr",
28+
"demo.vue.android": "cd ./demo-vue && ns run android --no-hmr",
2929
"demo.vue.clean": "cd ./demo-vue && ns clean",
30-
"demo.vue.ios": "cd ./demo-vue && ns run ios --no-hmr --env.watchNodeModules",
30+
"demo.vue.ios": "cd ./demo-vue && ns run ios --no-hmr",
3131
"postinstall": "npm run setup",
32-
"publish": "npm run clean && npm run build.all && npm run readme && lerna publish --no-private --create-release=github --force-publish",
33-
"readme": "lerna run readme && node ./tools/readme.js",
32+
"publish": "npm run setup && npm run build.all && lerna publish --create-release=github --force-publish",
33+
"readme": "node ./tools/readme.js",
3434
"setup": "npm run submodules && ts-patch install",
3535
"start": "./node_modules/.bin/ntl -A -s 15 -o",
3636
"submodules": "git submodule update --init",
3737
"sync": "node ./tools/sync.js",
3838
"sync.test": "node ./tools/sync.js",
3939
"tsc": "cpy '**/*.d.ts' '../plugin' --parents --cwd=src && tsc -skipLibCheck -d",
4040
"update": "node ./tools/update.js",
41-
"doc": "node tools/builddoc.mjs",
41+
"doc": "node tools/builddoc.mjs && git add docs/* && git commit -m \"chore:doc\"",
4242
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'demo-*/hooks' 'demo-*/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'"
4343
},
4444
"commitlint": {
@@ -69,8 +69,8 @@
6969
},
7070
"engines": {
7171
"npm": "please use yarn or pnpm",
72-
"yarn": ">=1.19.1",
73-
"pnpm": ">=7.0.0",
72+
"yarn": ">= 1.19.1",
73+
"pnpm": ">= 7.0.0",
7474
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
7575
},
7676
"workspaces": [

references.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/// <reference path="./node_modules/@nativescript/types-ios/lib/ios.d.ts" />
2+
/// <reference path="./node_modules/@nativescript/types-android/lib/android-28.d.ts" />
3+
/// <reference path="./node_modules/@nativescript/core/global-types.d.ts" />

0 commit comments

Comments
 (0)