Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit 301373d

Browse files
committed
build: Update supports
Updating the following: - @angular 4.2.3+ - @angular/cli 1.1.2 - Add documentation for the error about resolving symbol values statically #937 - Support Node 8/NPM 5
1 parent b1500da commit 301373d

15 files changed

+15304
-99
lines changed

.github/ISSUE_TEMPLATE.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@ Before you write your question, please take some extra time to write a good titl
22

33
## What versions you are using?
44

5-
- angular version:
6-
- jquery version:
7-
- datatables version:
8-
- angular-datatables version:
9-
- angular-cli version:
5+
- node version:
6+
- npm version:
7+
- angular version:
8+
- jquery version:
9+
- datatables version:
10+
- angular-datatables version:
11+
- angular-cli version:
1012

1113
## What's the problem?
1214

@@ -18,4 +20,4 @@ Try to consistently reproduce your issue — in a clean environment.
1820
Write your example code using [Markdown](https://help.github.com/articles/github-flavored-markdown) syntax. Really, it's not difficult...
1921
If you can, a [plnkr](http://plnkr.co/), [jsfiddle](https://jsfiddle.net/), [codepen](http://codepen.io/) or something alike is even better!
2022

21-
Forgive me for being blunt, but if you can't follow this simple issue template (especially the code), don't expect me to help you efficiently!!!
23+
Forgive me for being blunt, but if you can't follow this simple issue template (especially the code), don't expect me to help you efficiently!!!

demo/.gitignore

+11-4
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,31 @@
33
# compiled output
44
/dist
55
/tmp
6+
/out-tsc
67

78
# dependencies
89
/node_modules
9-
/bower_components
1010

1111
# IDEs and editors
1212
/.idea
13-
/.vscode
1413
.project
1514
.classpath
1615
.c9/
1716
*.launch
1817
.settings/
18+
*.sublime-workspace
19+
20+
# IDE - VSCode
21+
.vscode/*
22+
!.vscode/settings.json
23+
!.vscode/tasks.json
24+
!.vscode/launch.json
25+
!.vscode/extensions.json
1926

2027
# misc
2128
/.sass-cache
2229
/connect.lock
23-
/coverage/*
30+
/coverage
2431
/libpeerconnection.log
2532
npm-debug.log
2633
testem.log
@@ -30,6 +37,6 @@ testem.log
3037
/e2e/*.js
3138
/e2e/*.map
3239

33-
#System Files
40+
# System Files
3441
.DS_Store
3542
Thumbs.db

demo/karma.conf.js

+1-12
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,14 @@ module.exports = function (config) {
1515
client:{
1616
clearContext: false // leave Jasmine Spec Runner output visible in browser
1717
},
18-
files: [
19-
{ pattern: './src/test.ts', watched: false }
20-
],
21-
preprocessors: {
22-
'./src/test.ts': ['@angular/cli']
23-
},
24-
mime: {
25-
'text/x-typescript': ['ts','tsx']
26-
},
2718
coverageIstanbulReporter: {
2819
reports: [ 'html', 'lcovonly' ],
2920
fixWebpackSourcePaths: true
3021
},
3122
angularCli: {
3223
environment: 'dev'
3324
},
34-
reporters: config.angularCli && config.angularCli.codeCoverage
35-
? ['progress', 'coverage-istanbul']
36-
: ['progress', 'kjhtml'],
25+
reporters: ['progress', 'kjhtml'],
3726
port: 9876,
3827
colors: true,
3928
logLevel: config.LOG_INFO,

0 commit comments

Comments
 (0)