Skip to content

Commit

Permalink
Merge pull request #1 from ghiscoding/feature/packagr
Browse files Browse the repository at this point in the history
Switched packaging from "angular-library-starter" to "ng-packagr"
  • Loading branch information
ghiscoding authored Oct 17, 2017
2 parents 076ccd6 + 6cca6fa commit 8675e7a
Show file tree
Hide file tree
Showing 298 changed files with 24,148 additions and 11,115 deletions.
26 changes: 20 additions & 6 deletions demo/.angular-cli.json → .angular-cli.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"project": {
"name": "test-slickgrid"
"name": "angular-slickgrid"
},
"apps": [
{
Expand All @@ -21,6 +21,7 @@
"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.css",
"../node_modules/font-awesome/css/font-awesome.css",
"app/styles/slickgrid-custom-variables.scss",
"styles.scss"
],
"scripts": [
Expand All @@ -32,9 +33,19 @@
"../node_modules/slickgrid/slick.dataview.js",
"../node_modules/slickgrid/slick.grid.js",
"../node_modules/slickgrid/slick.dataview.js",
"../node_modules/slickgrid/plugins/slick.autotooltips.js",
"../node_modules/slickgrid/plugins/slick.cellcopymanager.js",
"../node_modules/slickgrid/plugins/slick.cellexternalcopymanager.js",
"../node_modules/slickgrid/plugins/slick.cellrangedecorator.js",
"../node_modules/slickgrid/plugins/slick.cellrangeselector.js",
"../node_modules/slickgrid/plugins/slick.cellselectionmodel.js",
"../node_modules/slickgrid/plugins/slick.checkboxselectcolumn.js",
"../node_modules/slickgrid/plugins/slick.headerbuttons.js",
"../node_modules/slickgrid/plugins/slick.headermenu.js",
"../node_modules/slickgrid/plugins/slick.rowmovemanager.js",
"../node_modules/slickgrid/plugins/slick.rowselectionmodel.js",
"../node_modules/slickgrid/controls/slick.pager.js",
"../node_modules/slickgrid/controls/slick.columnpicker.js"
"../node_modules/slickgrid/controls/slick.columnpicker.js",
"../node_modules/slickgrid/controls/slick.pager.js"
],
"environmentSource": "environments/environment.ts",
"environments": {
Expand All @@ -50,13 +61,16 @@
},
"lint": [
{
"project": "src/tsconfig.app.json"
"project": "src/tsconfig.app.json",
"exclude": "**/node_modules/**"
},
{
"project": "src/tsconfig.spec.json"
"project": "src/tsconfig.spec.json",
"exclude": "**/node_modules/**"
},
{
"project": "e2e/tsconfig.e2e.json"
"project": "e2e/tsconfig.e2e.json",
"exclude": "**/node_modules/**"
}
],
"test": {
Expand Down
2 changes: 1 addition & 1 deletion .angulardoc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"repoId": "a1ac7920-7226-4ade-aa99-77a15852a4bb",
"repoId": "09416e29-039d-4fa6-965e-9d6d756bbaf7",
"lastSync": 0
}
11 changes: 3 additions & 8 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
# http://editorconfig.org
# Editor configuration, see http://editorconfig.org
root = true

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

[*.{js,json,ts}]
indent_style = space
indent_size = 2

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

# compiled output
/tmp
/out-tsc
/.ng_build
.ng_build

# 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
.chrome

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

.chrome
.idea
.DS_STORE
# e2e
/e2e/*.js
/e2e/*.map

*.log
*.tgz
# System Files
.DS_Store
Thumbs.db
26 changes: 16 additions & 10 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
node_modules
bower_components
npm-debug.log
yarn-error.log
yarn.lock
# See http://help.github.com/ignore-files/ for more about ignoring files.

.chrome
.idea
.DS_STORE
# compiled output
/tmp
/out-tsc
/.ng_build
.ng_build

# dependencies
/node_modules

*.log
*.tgz
# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.chrome
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:4200",
"webRoot": "${workspaceRoot}"
},
{
"type": "chrome",
"request": "attach",
"name": "Attach to Chrome",
"port": 9222,
"webRoot": "${workspaceRoot}"
}
]
}
5 changes: 0 additions & 5 deletions CHANGELOG.md

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Angular-Slickgrid
One of the best javascript datagrid [SlickGrid](https://github.com/mleibman/SlickGrid) which was originally developed by @mleibman is now available to Angular. I have used a few datagrids and slickgrid beats most of them in terms of functionalities and performance (it can easily deal with even a million row).

### Demo page
[https://ghiscoding.github.io/Angular-Slickgrid](https://ghiscoding.github.io/Angular-Slickgrid)

### SlickGrid Source
We will be using [6pac SlickGrid fork](https://github.com/6pac/SlickGrid/) (the most active fork since the original @mleibman fork was closed some time ago by his author personal reasons).

Expand Down Expand Up @@ -66,4 +69,4 @@ Screenshots from the demo app with the `Bootstrap` theme (that is the only avail

### Slickgrid Example with Server Side (Filter/Sort/Pagination)

![Slickgrid Server Side](/screenshots/pagination.png)
![Slickgrid Server Side](/screenshots/pagination.png)
1 change: 0 additions & 1 deletion angular-slickgrid.ts

This file was deleted.

67 changes: 0 additions & 67 deletions build.js

This file was deleted.

4 changes: 0 additions & 4 deletions demo/.angulardoc.json

This file was deleted.

13 changes: 0 additions & 13 deletions demo/.editorconfig

This file was deleted.

42 changes: 0 additions & 42 deletions demo/.gitignore

This file was deleted.

Loading

0 comments on commit 8675e7a

Please sign in to comment.