Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
feat: Update dependencies and ionic application template and update m…
Browse files Browse the repository at this point in the history
…ethod for correct detect latest deps versions
  • Loading branch information
EndyKaufman committed Apr 24, 2019
1 parent 8cdcd88 commit caf5e71
Show file tree
Hide file tree
Showing 58 changed files with 7,026 additions and 5,128 deletions.
42 changes: 21 additions & 21 deletions README.md

Large diffs are not rendered by default.

17 changes: 16 additions & 1 deletion files/rucken/todo-ionic/.travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
language: node_js
node_js:
- "11"
- '11'
before_install:
- chmod +x "./scripts/prepare-android-env.sh"
- "./scripts/prepare-android-env.sh"
deploy:
provider: script
skip_cleanup: true
script: bash ./scripts/publish-gh-pages.sh
on:
branch: master
env:
matrix:
- IONIC_VERSION="4.10.2" ANDROID_SDK_VERSION="4333796" ANDROID_HOME="/opt/android-sdk"
ANDROID_BUILD_TOOLS_VERSION="19.1.0" CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL="https://downloads.gradle.org/distributions/gradle-5.4-all.zip"
global:
secure: kd1+5RILSr/B1/ytYdTBUE0n9LBuTXcXelttkQrvmEpupquCnmBYZ0Gu0rAPRuWsLTxJPhVX0HGPBNq/eTn0RZO0/505w//SoKQvTnQhwvfA4ECnJMWbGgk911M72BBnVNRXfWWMAGP79a0I0YvI3kDh5LhITJENXXfqd3NoWpKLVeNg4umfL2CykXyYowVxZu1ES4WU+vhLJOczZrmOFgvvUQQpUvBF8Yq8V3LgVs1Sc2jbD4Wj9XNUWQHalCXNAGvTOpchhV/MAGNbSmUEh98d5hlMRtagdclwCUvGI5scR14qt1JnIExri/2LyDO4IR2LYuPsu0pTAb332+tJizSmwJ5RNCWQILneHT0VInEKoxRUJICjH0EnbFjP4yHQDTN5RoFXhwdKZkKIzPvfzJTuTEp3Ftr/1DdMbBR3OLBgv0kknDGRpFUH5Ld+/LQdd17k3BxbmCSOFUujoNif1LEZR/tI2R4EgBlDSsHpHIQAZ4gumYsL3mxGTlYAm4sce6+zz9FHLtMgPG8iXBt3108c8um7ebO7ELYD31y+BFpFHLJiFfAprYFpLwQdk4CfRU2tjVJXvbWp3MqiIURU/NuLOfwa8RRGzH9a916YjA4M9dO70Ny3KhhVmxBUCF0kBmcoYMOa6X/IEJTY82/FeNmayiJf1b2fgsG3MJK/Sh0=
9 changes: 9 additions & 0 deletions files/rucken/todo-ionic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# [0.1.0](https://github.com/rucken/todo-ionic/compare/0.0.4...0.1.0) (2019-04-23)


### Features

* Update and remove no used files ([f124e78](https://github.com/rucken/todo-ionic/commit/f124e78))



## [0.0.4](https://github.com/rucken/todo-ionic/compare/0.0.3...0.0.4) (2019-04-09)


Expand Down
13 changes: 3 additions & 10 deletions files/rucken/todo-ionic/apps/demo/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { HttpClientModule } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { PreloadAllModules, RouteReuseStrategy, RouterModule } from '@angular/router';
import { HTTP } from '@ionic-native/http/ngx';
import { SplashScreen } from '@ionic-native/splash-screen/ngx';
import { StatusBar } from '@ionic-native/status-bar/ngx';
import { IonicModule, IonicRouteStrategy } from '@ionic/angular';
Expand All @@ -16,14 +15,13 @@ import { DEFAULT_PROJECTS_CONFIG, PROJECTS_CONFIG_TOKEN, RuckenTodoCoreModule, T
import { IONIC_DEFAULT_TASKS_CONFIG, ProjectsListFiltersModalModule, RuckenTodoIonicModule, TasksListFiltersModalModule } from '@rucken/todo-ionic';
import { NgxBindIOModule } from 'ngx-bind-io';
import { NgxPermissionsModule } from 'ngx-permissions';
import { NgxRemoteConfigModule, NgxRemoteConfigService } from 'ngx-remote-config';
import { NgxRemoteConfigModule } from 'ngx-remote-config';
import { environment } from '../environments/environment';
import { AppComponent } from './app.component';
import { APP_ROUTES } from './app.routes';
import { config } from './config/config';
import { SharedModule } from './shared/shared.module';
import { metaFactory } from './utils/meta-factory';
import { NgxRemoteConfigIonicService } from './utils/ngx-remote-config.service';

@NgModule({
declarations: [AppComponent],
Expand All @@ -34,8 +32,8 @@ import { NgxRemoteConfigIonicService } from './utils/ngx-remote-config.service';
HttpClientModule,
NgxRemoteConfigModule.forRoot({
withoutIterceptor: !environment.production,
url: environment.remoteConfig.url,
default: environment.remoteConfig.default
url: !environment.production ? undefined : environment.remoteConfig.url,
default: !environment.production ? undefined : environment.remoteConfig.default
}),
IonicStorageModule.forRoot(),
TranslateModule.forRoot(),
Expand Down Expand Up @@ -87,11 +85,6 @@ import { NgxRemoteConfigIonicService } from './utils/ngx-remote-config.service';
RuckenTodoIonicModule
],
providers: [
HTTP,
{
provide: NgxRemoteConfigService,
useClass: NgxRemoteConfigIonicService
},
{
provide: CONTENT_TYPES_CONFIG_TOKEN,
useValue: {
Expand Down
1 change: 0 additions & 1 deletion files/rucken/todo-ionic/apps/demo/src/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ export * from './pages/users-page/users-page.routes';
export * from './shared/shared.module';
export * from './utils/initialize-app';
export * from './utils/meta-factory';
export * from './utils/ngx-remote-config.service';

This file was deleted.

10 changes: 5 additions & 5 deletions files/rucken/todo-ionic/libs/rucken/todo-ionic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rucken/todo-ionic",
"version": "0.0.4",
"version": "0.1.0",
"engines": {
"node": ">=10",
"npm": ">=6.4.0"
Expand Down Expand Up @@ -64,12 +64,12 @@
}
],
"peerDependencies": {
"@angular/common": "~7.2.12",
"@angular/core": "~7.2.12",
"@ionic/angular": "4.2.0",
"@angular/common": "~7.2.13",
"@angular/core": "~7.2.13",
"@ionic/angular": "4.3.0",
"@rucken/core": "^3.9.12",
"@rucken/todo": "^3.9.9",
"@rucken/ionic": "^0.3.7"
"@rucken/ionic": "^1.0.0"
},
"dependencies": {
"@ngx-translate/core": "^11.0.1",
Expand Down
Loading

0 comments on commit caf5e71

Please sign in to comment.