Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Major project upgrade #130

Merged
merged 3 commits into from
Aug 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
# editorconfig.org

# Editor configuration, see https://editorconfig.org
root = true

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

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
trim_trailing_whitespace = false
max_line_length = off
trim_trailing_whitespace = false
50 changes: 45 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,46 @@
node_modules
.DS_Store
.idea
dist
aot
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json

# 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
.history/*

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

# System Files
.DS_Store
Thumbs.db
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ Please report all bugs to bug report or fix it and send pull request :)
Via NPM:

```bash
npm install ionic-cache @ionic/storage --save
npm install ionic-cache @ionic/storage-angular --save
```

or Yarn:
```bash
yarn add ionic-cache @ionic/storage
yarn add ionic-cache @ionic/storage-angular
```

You can optionally add [Cordova SQLite](https://ionicframework.com/docs/native/sqlite/).
Expand Down
43 changes: 43 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ionic-cache": {
"projectType": "library",
"root": "projects/ionic-cache",
"sourceRoot": "projects/ionic-cache/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/ionic-cache/tsconfig.lib.json",
"project": "projects/ionic-cache/ng-package.json"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/ionic-cache/src/test.ts",
"tsConfig": "projects/ionic-cache/tsconfig.spec.json",
"karmaConfig": "projects/ionic-cache/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/ionic-cache/tsconfig.lib.json",
"projects/ionic-cache/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "ionic-cache"
}
24 changes: 0 additions & 24 deletions circle.yml

This file was deleted.

61 changes: 0 additions & 61 deletions karma.conf.js

This file was deleted.

Loading