New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nativescript-toast

Package Overview
Dependencies
Maintainers
2
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-toast - npm Package Compare versions

Comparing version 1.4.0-6 to 1.4.0

samples/angular/.vscode/launch.json

29

CHANGELOG.md

@@ -1,6 +0,4 @@

# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
<a name="1.3.0"></a>
# 1.3.0 (2016-06-10)
## [1.3.0] - 2016-06-10
### Removed

@@ -12,3 +10,5 @@ - Drops iOS support because i'm unable to support a third-party pod

## [1.2.0] - 2015-11-29
<a name="1.2.0"></a>
# 1.2.0 (2015-11-29)
### Added

@@ -20,3 +20,5 @@ - Finally replaced the pseudo iOS version with the [CocoaPod "JLToast"](https://github.com/devxoul/JLToast) to provide a similar experience on iOS, it worked but there is no `duration` parameter at the moment [#5](https://github.com/TobiasHennig/nativescript-toast/issues/4)

## [1.1.4] - 2015-11-02
<a name="1.1.4"></a>
# 1.1.4 (2015-11-02)
### Fixed

@@ -28,7 +30,11 @@ - Fixed a bug in the iOS version because of a wrong export

## [1.1.3] - 2015-08-01
<a name="1.1.3"></a>
# 1.1.3 (2015-08-01)
### Added
- Screenshot added
## [1.1.1] - 2015-07-31
<a name="1.1.1"></a>
# 1.1.1 (2015-07-31)
### Added

@@ -40,7 +46,10 @@ - Pseudo iOS version that log to the console

## [1.0.1] - 2015-07-30
<a name="1.0.1"></a>
# 1.0.1 (2015-07-30)
### Fixed
- #1: Error: Module "nativescript-toast" not found
## [1.0.0] - 2015-07-30
<a name="1.0.0"></a>
# 1.0.0 (2015-07-30)
Initial release
{
"name": "nativescript-toast",
"version": "1.4.0-6",
"version": "1.4.0",
"description": "A NativeScript Toast Plugin for Android and iOS apps.",

@@ -8,5 +8,12 @@ "main": "toast.js",

"scripts": {
"clean": "rm -rf node_modules hooks target tmp && mkdir tmp",
"test": "cd tmp && tns create my-test-app --ng && cd my-test-app && rm -rf platforms node_modules hooks && tns plugin add ../.. && tns install && tns build ios && tns build android"
"clean": "git checkout samples/angular/package.json && rm -rf node_modules target tmp && mkdir -p tmp && mkdir -p tmp/angular && cd samples/angular && rm -rf node_modules hooks platforms",
"test": "cd tmp/angular && cp -rp ../../samples/angular/* . && rm -rf platforms node_modules hooks && tns plugin add ../.. && tns install && tns build ios && tns build android",
"pre-e2e": "cd samples/angular && tns install && tns platform add ios && tns platform add android && tns build ios && tns build android",
"e2e": "cd samples/angular && tns test ios --emulator --justlaunch",
"changelog":" conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "npm run build && npm run test && npm run changelog && git add CHANGELOG.md"
},
"devDependencies": {
"conventional-changelog": "1.1.0"
},
"nativescript": {

@@ -13,0 +20,0 @@ "platforms": {

@@ -9,5 +9,5 @@ /*global exports*/

var d = (typeof (duration) === "string" && duration[0] === "l") ? 3.5 : 2;
return Toaster(text);
return Toast.alloc().initWithTextDelayDuration(text,0,d);
}
exports.makeText = makeText;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc