Skip to content

Commit

Permalink
replace packaging library with ng-packagr
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghislain Beaulac authored and Ghislain Beaulac committed Oct 17, 2017
1 parent 076ccd6 commit 7b859c6
Show file tree
Hide file tree
Showing 272 changed files with 19,440 additions and 11,636 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
51 changes: 42 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,46 @@
$ cat .gitignore
node_modules
bower_components
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/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.

Loading

0 comments on commit 7b859c6

Please sign in to comment.