Skip to content

Commit

Permalink
chore(npm): module no longer scoped under @SSENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
toddlawton committed Jan 28, 2017
1 parent 8da595e commit aaf16ef
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
## Installation

``` bash
npm install -S @ssense/vue-carousel
npm install -S vue-carousel
```

## Usage
Expand All @@ -30,7 +30,7 @@ You may install Vue Carousel globally:

``` js
import Vue from 'vue';
import VueCarousel from '@ssense/vue-carousel';
import VueCarousel from 'vue-carousel';

Vue.use(VueCarousel);
```
Expand All @@ -41,7 +41,7 @@ This will make **<carousel>** and **<slide>** available to all compo
Include the carousel directly into your component using import:

``` js
import { Carousel, Slide } from '@ssense/vue-carousel';
import { Carousel, Slide } from 'vue-carousel';

export default {
...
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-carousel.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/source/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Guide
## Installation

``` bash
npm install -S @ssense/vue-carousel
npm install -S vue-carousel
```

## Usage (Global)
Expand All @@ -14,7 +14,7 @@ You may install Vue Carousel globally:

``` js
import Vue from 'vue';
import VueCarousel from '@ssense/vue-carousel';
import VueCarousel from 'vue-carousel';

Vue.use(VueCarousel);
```
Expand All @@ -25,7 +25,7 @@ This will make **<carousel>** and **<slide>** available to all compo
Include the carousel directly into your component using import:

``` js
import { Carousel, Slide } from '@ssense/vue-carousel';
import { Carousel, Slide } from 'vue-carousel';

export default {
...
Expand Down
4 changes: 2 additions & 2 deletions docs/themes/vue/source/js/vue-carousel.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ssense/vue-carousel",
"version": "0.4.8",
"name": "vue-carousel",
"version": "0.5.0",
"description": "A flexible, responsive, touch-friendly carousel for Vue.js",
"main": "dist/vue-carousel.min.js",
"scripts": {
Expand Down

0 comments on commit aaf16ef

Please sign in to comment.