Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-tour

Package Overview
Dependencies
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-tour - npm Package Compare versions

Comparing version 1.3.1 to 1.4.0

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

## [1.4.0](https://github.com/pulsardev/vue-tour/compare/v1.3.1...v1.4.0) (2020-05-30)
### Features
* enable specific navigation keys ([89ff650](https://github.com/pulsardev/vue-tour/commit/89ff650ffbde5c4a87614bcb31f774231f336a2e))
### [1.3.1](https://github.com/pulsardev/vue-tour/compare/v1.3.0...v1.3.1) (2020-05-08)

@@ -7,0 +14,0 @@

58

CONTRIBUTING.md

@@ -19,19 +19,6 @@ # Contributing

To make a new release we:
- Generate a changelog and a tagged commit by running:
```
standard-version
```
- We publish the package to npm if the CI doesn't do it for us already:
```
npm publish
```
### Pull Requests
The best practice would be to push all the changes for a new release to a `staging` branch to ensure everything is fine.
Then, when the new version is ready:
- Generate the changelog
- Merge to `master`
- Eventually run `npm publish` if not done by the CI
All pull request must target `staging`.
The landing page is built by the CI using the last sources.

@@ -46,2 +33,43 @@ ### Merging PRs

### New release
Go on `staging` branch.
```
git checkout staging
```
Check result of Standard Version.
```
standard-version --dry-run
```
For a better control of the version number, use `--release-as`. <level> corresponds to semver levels: major, minor or patch.
```
standard-version --release-as <level> --dry-run
```
If result is ok, run command without `--dry-run` flag.
```
standard-version --release-as <level>
```
Push version on `staging`.
```
git push --follow-tags origin staging
```
Do a Pull Request from `staging` to `master`.
Once merged, publish on NPM from `master`.
```
git checkout master
npm publish
```
## Generating a Changelog

@@ -48,0 +76,0 @@

{
"name": "vue-tour",
"version": "1.3.1",
"version": "1.4.0",
"description": "Vue Tour is a lightweight, simple and customizable tour plugin for use with Vue.js. It provides a quick and easy way to guide your users through your application.",

@@ -5,0 +5,0 @@ "author": "Pulsar <pulsar.dev.team@gmail.com>",

@@ -26,2 +26,7 @@ export const DEFAULT_CALLBACKS = {

useKeyboardNavigation: true,
enabledNavigationKeys: {
ESCAPE: true,
ARROW_RIGHT: true,
ARROW_LEFT: true
},
debug: false

@@ -28,0 +33,0 @@ }

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