Skip to content
This repository has been archived by the owner on Aug 6, 2022. It is now read-only.

Commit

Permalink
Bumped up the version and finished the name change
Browse files Browse the repository at this point in the history
  • Loading branch information
sconix committed Mar 26, 2017
1 parent 5ca9e24 commit a399ec0
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2.5.0 Last 2.x release

- Preparing for moving to Angular 4.x

2.2.5 Name change release

- Changed from angular2 to ngx prefix

2.2.3 Bug fix release

- Fixed setting active index when hidden
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "angular2-swiper-wrapper-example",
"description": "Example app for the angular2-swiper-wrapper",
"license": "MIT",
"version": "2.2.3",
"version": "2.5.0",
"tslint": {
"extends": "./tslint.json"
},
Expand Down
2 changes: 1 addition & 1 deletion example/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, ViewChild } from '@angular/core';

import { SwiperComponent, SwiperConfigInterface } from 'angular2-swiper-wrapper';
import { SwiperComponent, SwiperConfigInterface } from 'ngx-swiper-wrapper';

@Component({
moduleId: module.id + '',
Expand Down
2 changes: 1 addition & 1 deletion example/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { BrowserModule } from '@angular/platform-browser';

import { FlexLayoutModule } from '@angular/flex-layout';

import { SwiperModule, SwiperConfigInterface } from 'angular2-swiper-wrapper';
import { SwiperModule, SwiperConfigInterface } from 'ngx-swiper-wrapper';

import { AppComponent } from './app.component';

Expand Down
4 changes: 4 additions & 0 deletions example/src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es6"
],
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./dist",
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "ngx-swiper-wrapper",
"description": "Angular wrapper library for Swiper",
"bugs": "https://github.com/zefoy/angular2-swiper-wrapper/issues",
"bugs": "https://github.com/zefoy/ngx-swiper-wrapper/issues",
"license": "MIT",
"version": "2.2.5",
"main": "bundles/angular2-swiper-wrapper.umd.js",
"version": "2.5.0",
"main": "bundles/ngx-swiper-wrapper.umd.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"tslint": {
Expand All @@ -22,6 +22,7 @@
"build": "npm run build:umd && npm run build:aot",
"deploy": "npm run build && npm run inline && npm publish",
"inline": "ng2-inline --compress -b dist/lib -o ./ 'dist/lib/*.js'",
"release": "npm version -m 'New release with version %s'",
"lint:ts": "tslint 'src/**/*.ts'",
"lint:scss": "stylelint 'src/**/*.scss' --syntax scss",
"build:js": "ngc -p src/tsconfig.json",
Expand All @@ -32,7 +33,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/zefoy/angular2-swiper-wrapper.git"
"url": "https://github.com/zefoy/ngx-swiper-wrapper.git"
},
"dependencies": {
"swiper": "~3.4.0"
Expand Down
3 changes: 3 additions & 0 deletions src/lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
export { SwiperComponent } from './swiper.component';

export { SwiperDirective } from './swiper.directive';

export {
coverflowObject, coverflowObjectInterface,
cubeObject, cubeObjectInterface,
Expand All @@ -8,6 +10,7 @@ export {
SwiperConfig, SwiperConfigInterface,
SwiperEvents
} from './swiper.interfaces';

export {
provideDefaultConfig, provideForRootGuard,
SWIPER_CONFIG, SWIPER_GUARD,
Expand Down

0 comments on commit a399ec0

Please sign in to comment.