chore: cleanup

This commit is contained in:
Nathan Walker
2020-07-16 12:56:37 -07:00
parent 8e55627d91
commit 03c2a193b9
8 changed files with 11 additions and 6 deletions

View File

@@ -1,9 +1,10 @@
{
"name": "nativescript",
"version": "7.0.0-rc.19",
"version": "7.0.0-rc.20",
"license": "MIT",
"scripts": {
"nx": "nx",
"format": "nx format:write",
"setup": "npx rimraf -- hooks node_modules package-lock.json && npm i && nx run core:setup"
},
"private": true,

View File

@@ -3,7 +3,7 @@
"main": "index",
"types": "index.d.ts",
"description": "NativeScript Core Modules",
"version": "7.0.0-rc.19",
"version": "7.0.0-rc.20",
"homepage": "https://nativescript.org",
"repository": {
"type": "git",

View File

@@ -50,6 +50,8 @@ import { Device } from '../../../platform';
import lazy from '../../../utils/lazy';
export * from './view-common';
// helpers (these are okay re-exported here)
export * from './view-helper';
// This one can eventually be cleaned up but causes issues with a lot of ui-suite plugins in particular if not exported here
export * from '../properties';

View File

@@ -12,6 +12,8 @@ import { perspectiveProperty, Visibility, visibilityProperty, opacityProperty, r
import { profile } from '../../../profiling';
export * from './view-common';
// helpers (these are okay re-exported here)
export * from './view-helper';
// This one can eventually be cleaned up but causes issues with a lot of ui-suite plugins in particular if not exported here
export * from '../properties';

View File

@@ -8,7 +8,7 @@ export { Button } from './button';
export { ContentView } from './content-view';
export { Binding, BindingOptions } from './core/bindable';
export { ViewBase, ShowModalOptions, eachDescendant, getAncestor, getViewById, booleanConverter } from './core/view-base';
export { View, Template, KeyedTemplate, ShownModallyData, CSSType, ContainerView } from './core/view';
export { View, Template, KeyedTemplate, ShownModallyData, CSSType, ContainerView, ViewHelper, IOSHelper } from './core/view';
export { Property, CoercibleProperty, InheritedProperty, CssProperty, InheritedCssProperty, ShorthandProperty, CssAnimationProperty, unsetValue } from './core/properties';
export { DatePicker } from './date-picker';

View File

@@ -8,7 +8,7 @@ export { Button } from './button';
export { ContentView } from './content-view';
export { Binding, BindingOptions } from './core/bindable';
export { ViewBase, ShowModalOptions, eachDescendant, getAncestor, getViewById, booleanConverter } from './core/view-base';
export { View, Template, KeyedTemplate, ShownModallyData, CSSType, ContainerView } from './core/view';
export { View, Template, KeyedTemplate, ShownModallyData, CSSType, ContainerView, ViewHelper, IOSHelper } from './core/view';
export { Property, CoercibleProperty, InheritedProperty, CssProperty, InheritedCssProperty, ShorthandProperty, CssAnimationProperty, unsetValue } from './core/properties';
export { DatePicker } from './date-picker';

View File

@@ -3,7 +3,7 @@
"main": "index",
"types": "index.d.ts",
"description": "Compatibility with old style tns-core-modules imports for NativeScript.",
"version": "7.0.0-rc.19",
"version": "7.0.0-rc.20",
"homepage": "https://nativescript.org",
"repository": {
"type": "git",

View File

@@ -1,6 +1,6 @@
{
"name": "@nativescript/webpack",
"version": "2.0.0-alpha.3",
"version": "2.0.0-rc.0",
"main": "index",
"description": "Webpack plugin for NativeScript",
"homepage": "https://nativescript.org",