Skip to content

Commit

Permalink
refactor(cli): refactor to @angular/cli and update to Angular6 & RxJS…
Browse files Browse the repository at this point in the history
… 6 (closes #443, #441)
  • Loading branch information
jkuri committed Jun 8, 2018
1 parent fbd30c7 commit ebe1cd3
Show file tree
Hide file tree
Showing 69 changed files with 8,171 additions and 9,877 deletions.
4 changes: 2 additions & 2 deletions .abstruse.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
image: abstruse

matrix:
- env: SCRIPT=test NODE_VERSION=6
- env: SCRIPT=test NODE_VERSION=7
- env: SCRIPT=test NODE_VERSION=8
- env: SCRIPT=test NODE_VERSION=9
- env: SCRIPT=test NODE_VERSION=10

before_install:
- nvm install $NODE_VERSION
Expand Down
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false
48 changes: 38 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,39 @@
dist/
dist-app/
bundles/
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/tmp
/out-tsc

# dependencies
/node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
node_modules/
lib/
*.ngsummary.json
*.ngfactory.ts
*.d.ts
yarn.lock
.idea/
Thumbs.db
4 changes: 0 additions & 4 deletions .npmignore

This file was deleted.

243 changes: 0 additions & 243 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion LICENCE → LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2017 Jan Kuri
Copyright (c) 2015-2018 Jan Kuri [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![AbstruseCI](https://ci.bleenco.io/badge/11)](https://ci.bleenco.io/repo/11)

Angular 2+ File Uploader (this includes also Angular 5)
Angular 6 File Uploader

http://ngx-uploader.com

Expand All @@ -12,14 +12,6 @@ Do not open issues for general support questions as we want to keep GitHub issue

To save your and our time, we will systematically close all issues that are requests for general support and redirect people to Stack Overflow.

### Maintenance Information
We are actively maintain the 4.x branch.
The 2.x and 3.x are outdated and you should *NOT* use this branches any more. Therefore all open issues for that releases will be closed soon.

**This module has been completely rewritten from scratch with the version `3.0.0`.**

If you are looking for documentation for version prior to `3.0.0`, please check [2.x.x](https://github.com/jkuri/ngx-uploader/tree/2.x.x) branch.

## Installation

1. Add `ngx-uploader` module as dependency to your project.
Expand Down
Loading

0 comments on commit ebe1cd3

Please sign in to comment.