chore: cleanup

This commit is contained in:
Nathan Walker
2020-07-18 15:58:56 -07:00
parent 448400a610
commit d3064bac17
6 changed files with 8 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "nativescript",
"version": "7.0.0-rc.22",
"version": "7.0.0-rc.23",
"license": "MIT",
"scripts": {
"nx": "nx",

View File

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

View File

@@ -10,6 +10,7 @@ export { Binding, BindingOptions } from './core/bindable';
export { ViewBase, ShowModalOptions, eachDescendant, getAncestor, getViewById, booleanConverter } from './core/view-base';
export { View, Template, KeyedTemplate, ShownModallyData, CSSType, ContainerView, ViewHelper, IOSHelper } from './core/view';
export { Property, CoercibleProperty, InheritedProperty, CssProperty, InheritedCssProperty, ShorthandProperty, CssAnimationProperty, unsetValue, makeParser, makeValidator } from './core/properties';
export { addWeakEventListener, removeWeakEventListener } from './core/weak-event-listener';
export { DatePicker } from './date-picker';
// No need go export dialogs, they are already export exported globally

View File

@@ -10,6 +10,7 @@ export { Binding, BindingOptions } from './core/bindable';
export { ViewBase, ShowModalOptions, eachDescendant, getAncestor, getViewById, booleanConverter } from './core/view-base';
export { View, Template, KeyedTemplate, ShownModallyData, CSSType, ContainerView, ViewHelper, IOSHelper } from './core/view';
export { Property, CoercibleProperty, InheritedProperty, CssProperty, InheritedCssProperty, ShorthandProperty, CssAnimationProperty, unsetValue, makeParser, makeValidator } from './core/properties';
export { addWeakEventListener, removeWeakEventListener } from './core/weak-event-listener';
export { DatePicker } from './date-picker';
// No need go export dialogs, they are already export exported globally

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.22",
"version": "7.0.0-rc.23",
"homepage": "https://nativescript.org",
"repository": {
"type": "git",

View File

@@ -418,6 +418,9 @@
{
"command": "npm run setup"
},
{
"command": "mkdir -p ../../dist/packages"
},
{
"command": "mv \"$(npm pack | tail -n 1)\" ../../dist/packages/nativescript-webpack.tgz"
}