Skip to content

Commit ffa64b3

Browse files
committed
chore: N 8.4 update
1 parent b8a366d commit ffa64b3

File tree

10 files changed

+21
-12
lines changed

10 files changed

+21
-12
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ yarn-error.log*
2121
.LSOverride
2222
.idea
2323
.cloud
24+
.gradle
2425
.project
26+
.yarn
2527
tmp/
2628
package-lock.json
29+
yarn.lock
2730

2831
!.eslintrc.js
2932
!.prettierrc.js

demo-ng

Submodule demo-ng updated 1 file

demo-react

demo-svelte

demo-vue

lerna.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"packages/*"
44
],
55
"version": "13.0.43",
6+
"npmClient": "yarn",
7+
"useWorkspaces": true,
68
"command": {
79
"publish": {
810
"conventionalCommits": true

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"name": "@nativescript-community/ui-pager",
32
"version": "13.0.0",
43
"homepage": "https://github.com/nativescript-community/ui-pager#readme",
54
"bugs": {
@@ -18,7 +17,7 @@
1817
"build.angular": "lerna run build.angular",
1918
"build.angular.win": "lerna run build.angular.win",
2019
"build.win": "lerna run build.win",
21-
"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'",
20+
"clean": "rimraf 'packages/**/*.d.ts' 'packages/**/*.js' 'packages/**/*.js.map' 'packages/**/*.metada 'packages/**/angular/ng-package.json'",
2221
"clean.win": "rimraf packages\\**\\*.d.ts packages\\**\\*.js packages\\**\\*.js.map packages\\**\\*.metadata.json packages\\**\\*.ngsummary.json node_modules package-lock.json",
2322
"commitmsg": "commitlint -e $GIT_PARAMS",
2423
"demo.ng.android": "cd ./demo-ng && ns run android --no-hmr",
@@ -34,15 +33,17 @@
3433
"demo.vue.clean": "cd ./demo-vue && ns clean",
3534
"demo.vue.ios": "cd ./demo-vue && ns run ios --no-hmr",
3635
"postinstall": "npm run setup",
37-
"publish": "npm run setup && npm run build.all && lerna publish --create-release=github --force-publish",
36+
"publish": "npm run clean && npm run build.all && lerna publish --create-release=github --force-publish",
3837
"readme": "node ./tools/readme.js",
3938
"setup": "npm run submodules && ts-patch install",
4039
"start": "./node_modules/.bin/ntl -A -s 15 -o",
4140
"submodules": "git submodule update --init",
4241
"sync": "node ./tools/sync.js",
4342
"sync.test": "node ./tools/sync.js",
4443
"tsc": "cpy '**/*.d.ts' '../plugin' --parents --cwd=src && tsc -skipLibCheck -d",
45-
"update": "node ./tools/update.js"
44+
"update": "node ./tools/update.js",
45+
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
46+
"doc": "node tools/builddoc.mjs && git add docs/* && git commit -m \"chore:doc\""
4647
},
4748
"commitlint": {
4849
"extends": [
@@ -73,5 +74,8 @@
7374
"npm": "please use yarn or pnpm",
7475
"yarn": ">= 1.19.1",
7576
"pnpm": ">= 7.0.0"
76-
}
77+
},
78+
"workspaces": [
79+
"packages/*"
80+
]
7781
}

src/ui-pager/index.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ChangeType, Color, Device, ObservableArray, Property, Screen, StackLayout, View, ViewBase, profile } from '@nativescript/core';
22
import { KeyedTemplate } from '@nativescript/core/ui/core/view';
33
import { isString } from '@nativescript/core/utils/types';
4-
import { layout } from '@nativescript/core/utils/utils';
4+
import { layout } from '@nativescript/core/utils/layout-helper';
55
import {
66
Indicator,
77
ItemEventData,

src/ui-pager/index.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ChangeType, Color, EventData, KeyedTemplate, Observable, ObservableArray, Property, ProxyViewContainer, StackLayout, Utils, View, ViewBase, profile } from '@nativescript/core';
2-
import { layout } from '@nativescript/core/utils/utils';
2+
import { layout } from '@nativescript/core/utils/layout-helper';
33
import {
44
Indicator,
55
ItemEventData,

0 commit comments

Comments
 (0)