Skip to content

Commit

Permalink
Library for channels-web-mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
lexycole committed Oct 17, 2022
0 parents commit 55da57f
Show file tree
Hide file tree
Showing 70 changed files with 30,618 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Editor configuration, see https://editorconfig.org
root = true

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

[*.ts]
quote_type = single

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

# Compiled output
/dist
/tmp
/out-tsc
/bazel-out

# Node
/node_modules
npm-debug.log
yarn-error.log

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

# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings

# System files
.DS_Store
Thumbs.db
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# IonicNgChannelsUIWorkspace

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.3.4.

## Development server

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.

## Code scaffolding

Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## Build

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.

## Running unit tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

## Running end-to-end tests

Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.

## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
39 changes: 39 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ionic-ng-channels-ui": {
"projectType": "library",
"root": "projects/ionic-ng-channels-ui",
"sourceRoot": "projects/ionic-ng-channels-ui/src",
"prefix": "channels-ui",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/ionic-ng-channels-ui/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/ionic-ng-channels-ui/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/ionic-ng-channels-ui/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/ionic-ng-channels-ui/src/test.ts",
"tsConfig": "projects/ionic-ng-channels-ui/tsconfig.spec.json",
"karmaConfig": "projects/ionic-ng-channels-ui/karma.conf.js"
}
}
}
}
},
"defaultProject": "ionic-ng-channels-ui"
}
2 changes: 2 additions & 0 deletions debug.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[0611/034621.589:ERROR:registration_protocol_win.cc(106)] CreateFile: The system cannot find the file specified. (0x2)
[0611/034629.749:ERROR:registration_protocol_win.cc(106)] CreateFile: The system cannot find the file specified. (0x2)
Loading

0 comments on commit 55da57f

Please sign in to comment.