Skip to content

Commit

Permalink
Merge ac3f79f into 5dac68f
Browse files Browse the repository at this point in the history
  • Loading branch information
hdimitrieski committed Aug 15, 2019
2 parents 5dac68f + ac3f79f commit 87a909b
Show file tree
Hide file tree
Showing 633 changed files with 37,941 additions and 20 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 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

[*.md]
max_line_length = off
trim_trailing_whitespace = false
46 changes: 46 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# 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
38 changes: 38 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
sudo: required

language: node_js

node_js:
- "11"

dist: trusty

addons:
chrome: stable

before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3

jobs:
include:
- stage: lint and test
script:
- ng lint
- npm run test:lib-coverage
- npm run report-coverage:lib
- stage: build and publish
script:
- npm run build
deploy:
provider: pages
skip_cleanup: true
github_token: $GH_TOKEN
local_dir: dist/data-grid-demo
on:
branch: develop

notifications:
email: false
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 Netcetera

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ngrx-data-grid

[![Build Status](https://travis-ci.org/netceteragroup/ngrx-data-grid.svg?branch=develop)](https://travis-ci.org/netceteragroup/ngrx-data-grid)
[![Coverage Status](https://coveralls.io/repos/github/netceteragroup/ngrx-data-grid/badge.svg)](https://coveralls.io/github/netceteragroup/ngrx-data-grid?branch=develop)

# Demo
https://netceteragroup.github.io/ngrx-data-grid

# Install

```bash
$ npm install --save ngrx-data-grid
or
$ yarn add ngrx-data-grid
```
145 changes: 145 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"data-grid": {
"root": "projects/data-grid",
"sourceRoot": "projects/data-grid/src",
"projectType": "library",
"prefix": "ngrx",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/data-grid/tsconfig.lib.json",
"project": "projects/data-grid/ng-package.json"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/data-grid/src/test.ts",
"tsConfig": "projects/data-grid/tsconfig.spec.json",
"karmaConfig": "projects/data-grid/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/data-grid/tsconfig.lib.json",
"projects/data-grid/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
"data-grid-demo": {
"projectType": "application",
"schematics": {},
"root": "projects/data-grid-demo",
"sourceRoot": "projects/data-grid-demo/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/data-grid-demo",
"index": "projects/data-grid-demo/src/index.html",
"main": "projects/data-grid-demo/src/main.ts",
"polyfills": "projects/data-grid-demo/src/polyfills.ts",
"tsConfig": "projects/data-grid-demo/tsconfig.app.json",
"aot": false,
"assets": [
"projects/data-grid-demo/src/favicon.ico",
"projects/data-grid-demo/src/assets"
],
"styles": [
"projects/data-grid-demo/src/styles.css",
"projects/data-grid/src/styles.scss",
"./node_modules/bootstrap/dist/css/bootstrap.min.css"
],
"scripts": []
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "projects/data-grid-demo/src/environments/environment.ts",
"with": "projects/data-grid-demo/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
}
]
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "data-grid-demo:build"
},
"configurations": {
"production": {
"browserTarget": "data-grid-demo:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "data-grid-demo:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/data-grid-demo/src/test.ts",
"polyfills": "projects/data-grid-demo/src/polyfills.ts",
"tsConfig": "projects/data-grid-demo/tsconfig.spec.json",
"karmaConfig": "projects/data-grid-demo/karma.conf.js",
"assets": [
"projects/data-grid-demo/src/favicon.ico",
"projects/data-grid-demo/src/assets"
],
"styles": [
"projects/data-grid-demo/src/styles.css"
],
"scripts": []
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/data-grid-demo/tsconfig.app.json",
"projects/data-grid-demo/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"defaultProject": "data-grid"
}
20 changes: 0 additions & 20 deletions ncabuild.xml

This file was deleted.

0 comments on commit 87a909b

Please sign in to comment.