Merge pull request #437 from Alfresco/dev-denys-configs

Package.config improvements
This commit is contained in:
Eugenio Romano
2016-07-15 14:14:03 +01:00
committed by GitHub
24 changed files with 67 additions and 150 deletions

View File

@@ -4,15 +4,14 @@
"version": "0.2.0", "version": "0.2.0",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"postinstall": "typings install",
"clean": "rimraf node_modules typings", "clean": "rimraf node_modules typings",
"start": "npm run tslint && typings install && concurrently \"npm run tsc:w\" \"license-check\" \"npm run serve\" ", "start": "npm run tslint && concurrently \"npm run tsc:w\" \"license-check\" \"npm run serve\" ",
"tsc": "tsc", "tsc": "tsc",
"tsc:w": "tsc -w", "tsc:w": "tsc -w",
"serve": "node browser-sync-config.js", "serve": "node browser-sync-config.js",
"typings": "typings install", "typings": "typings install",
"tslint": "npm run tslint-src && npm run tslint-root", "tslint": "tslint -c tslint.json *.ts && tslint -c tslint.json app/{,**/}**.ts",
"tslint-src": "tslint -c tslint.json app/{,**/}**.ts",
"tslint-root": "tslint -c tslint.json *.ts",
"licensecheck": "license-check" "licensecheck": "license-check"
}, },
"repository": { "repository": {
@@ -95,14 +94,7 @@
}, },
"license-check-config": { "license-check-config": {
"src": [ "src": [
"**/*.js", "./app/**/*.js"
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js",
"!app/js/xml2json.js"
], ],
"path": "assets/license_header.txt", "path": "assets/license_header.txt",
"blocking": true, "blocking": true,

View File

@@ -4,17 +4,16 @@
"version": "0.2.0", "version": "0.2.0",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"postinstall": "typings install",
"clean": "rimraf dist node_modules typings", "clean": "rimraf dist node_modules typings",
"typings": "typings install", "typings": "typings install",
"build": "npm run tslint && typings install && rimraf dist && tsc && npm run copy-static && license-check", "build": "npm run tslint && rimraf dist && tsc && npm run copy-dist && license-check",
"build:w": "npm run tslint && typings install && rimraf dist && tsc && npm run copy-static:w && npm run watch-task", "build:w": "npm run tslint && rimraf dist && tsc && npm run copy-dist:w && npm run watch-task",
"watch-task": "concurrently \"npm run tsc:w\" \"license-check\"", "watch-task": "concurrently \"npm run tsc:w\" \"license-check\"",
"tslint": "npm run tslint-src && npm run tslint-root", "tslint": "tslint -c tslint.json *.ts && tslint -c tslint.json src/{,**/}**.ts",
"tslint-src": "tslint -c tslint.json src/{,**/}**.ts",
"tslint-root": "tslint -c tslint.json *.ts",
"licensecheck": "license-check", "licensecheck": "license-check",
"copy-static": "cpx \"./src/**/*.{html,css}\" ./dist/src", "copy-dist": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src",
"copy-static:w": "cpx \"./src/**/*.{html,css}\" ./dist/src -w", "copy-dist:w": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src -w",
"tsc": "tsc", "tsc": "tsc",
"tsc:w": "tsc -w", "tsc:w": "tsc -w",
"pretest": "npm run build", "pretest": "npm run build",
@@ -101,13 +100,7 @@
}, },
"license-check-config": { "license-check-config": {
"src": [ "src": [
"**/*.js", "./dist/**/*.js"
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "path": "assets/license_header.txt",
"blocking": true, "blocking": true,

View File

@@ -4,21 +4,16 @@
"version": "0.2.0", "version": "0.2.0",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"postinstall": "typings install",
"clean": "rimraf dist node_modules typings", "clean": "rimraf dist node_modules typings",
"typings": "typings install", "typings": "typings install",
"server": "wsrv -o -p 9875", "server": "wsrv -o -p 9875",
"build": "npm run tslint && typings install && rimraf dist && tsc && npm run copytemplates && license-check", "build": "npm run tslint && rimraf dist && tsc && npm run copy-dist && license-check",
"build:w": "npm run tslint && typings install && rimraf dist && npm run watch-task", "build:w": "npm run tslint && rimraf dist && npm run watch-task",
"watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copy-dist:w\" \"license-check\"",
"tslint": "npm run tslint-src && npm run tslint-root", "tslint": "tslint -c tslint.json *.ts && tslint -c tslint.json src/{,**/}**.ts",
"tslint-src": "tslint -c tslint.json src/{,**/}**.ts", "copy-dist": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src",
"tslint-root": "tslint -c tslint.json *.ts", "copy-dist:w": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src -w",
"copytemplates": "npm run copy-html-css && npm run copy-i18n",
"copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"",
"copy-html-css": "cpx \"./src/**/*.{html,css}\" ./dist/src",
"copy-html-css:w": "cpx \"./src/**/*.{html,css}\" ./dist/src -w",
"copy-i18n": "cpx \"./i18n/**/*.json\" ./dist/i18n",
"copy-i18n:w": "cpx \"./i18n/**/*.json\" ./dist/i18n -w",
"tsc": "tsc", "tsc": "tsc",
"tsc:w": "tsc -w", "tsc:w": "tsc -w",
"pretest": "npm run build", "pretest": "npm run build",
@@ -97,13 +92,7 @@
}, },
"license-check-config": { "license-check-config": {
"src": [ "src": [
"**/*.js", "./dist/**/*.js"
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "path": "assets/license_header.txt",
"blocking": true, "blocking": true,

View File

@@ -4,22 +4,15 @@
"version": "0.2.0", "version": "0.2.0",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"postinstall": "typings install",
"clean": "rimraf dist node_modules typings", "clean": "rimraf dist node_modules typings",
"typings": "typings install", "typings": "typings install",
"build": "npm run tslint && typings install && rimraf dist && tsc && npm run copytemplates && license-check", "build": "npm run tslint && rimraf dist && tsc && npm run copy-dist && license-check",
"build:w": "npm run tslint && typings install && rimraf dist && npm run watch-task", "build:w": "npm run tslint && rimraf dist && npm run watch-task",
"watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copy-dist:w\" \"license-check\"",
"tslint": "npm run tslint-src && npm run tslint-root", "tslint": "tslint -c tslint.json *.ts && tslint -c tslint.json src/{,**/}**.ts",
"tslint-src": "tslint -c tslint.json src/{,**/}**.ts", "copy-dist": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src",
"tslint-root": "tslint -c tslint.json *.ts", "copy-dist:w": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src -w",
"copytemplates": "npm run copy-html-css && npm run copy-i18n && npm run copy-images",
"copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\" \"npm run copy-images:w\"",
"copy-html-css": "cpx \"./src/**/*.{html,css}\" ./dist/src",
"copy-html-css:w": "cpx \"./src/**/*.{html,css}\" ./dist/src -w",
"copy-i18n": "cpx \"./i18n/**/*.json\" ./dist/i18n",
"copy-i18n:w": "cpx \"./i18n/**/*.json\" ./dist/i18n -w",
"copy-images": "cpx \"./src/**/*.{png,jpg,gif,svg}\" ./dist/src",
"copy-images:w": "cpx \"./src/**/*.{png,jpg,gif,svg}\" ./dist/src -w",
"tsc": "tsc", "tsc": "tsc",
"tsc:w": "tsc -w", "tsc:w": "tsc -w",
"pretest": "npm run build", "pretest": "npm run build",

View File

@@ -136,7 +136,7 @@ export class DocumentList implements OnInit, AfterViewInit, AfterViewChecked, Af
this.data = new ShareDataTableAdapter(this.documentListService, this.baseComponentPath, []); this.data = new ShareDataTableAdapter(this.documentListService, this.baseComponentPath, []);
if (translate) { if (translate) {
translate.addTranslationFolder('node_modules/ng2-alfresco-documentlist'); translate.addTranslationFolder('node_modules/ng2-alfresco-documentlist/dist/src');
} }
} }

View File

@@ -4,22 +4,15 @@
"version": "0.2.0", "version": "0.2.0",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"postinstall": "typings install",
"clean": "rimraf dist node_modules typings", "clean": "rimraf dist node_modules typings",
"typings": "typings install", "typings": "typings install",
"build": "npm run tslint && typings install && rimraf dist && tsc && npm run copytemplates && license-check", "build": "npm run tslint && rimraf dist && tsc && npm run copy-dist && license-check",
"build:w": "npm run tslint && typings install && rimraf dist && npm run watch-task", "build:w": "npm run tslint && rimraf dist && npm run watch-task",
"watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copy-dist:w\" \"license-check\"",
"tslint": "npm run tslint-src && npm run tslint-root", "tslint": "tslint -c tslint.json *.ts && tslint -c tslint.json src/{,**/}**.ts",
"tslint-src": "tslint -c tslint.json src/{,**/}**.ts", "copy-dist": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src",
"tslint-root": "tslint -c tslint.json *.ts", "copy-dist:w": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src -w",
"copytemplates": "npm run copy-html-css && npm run copy-i18n && npm run copy-images",
"copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-images:w\" \"npm run copy-i18n:w\"",
"copy-html-css": "cpx \"./src/**/*.{html,css}\" ./dist/src",
"copy-html-css:w": "cpx \"./src/**/*.{html,css}\" ./dist/src -w",
"copy-i18n": "cpx \"./i18n/**/*.json\" ./dist/i18n",
"copy-i18n:w": "cpx \"./i18n/**/*.json\" ./dist/i18n -w",
"copy-images": "cpx \"./src/**/*.{png,jpg,gif,svg}\" ./dist/src",
"copy-images:w": "cpx \"./src/**/*.{png,jpg,gif,svg}\" ./dist/src -w",
"tsc": "tsc", "tsc": "tsc",
"tsc:w": "tsc -w", "tsc:w": "tsc -w",
"pretest": "npm run build", "pretest": "npm run build",
@@ -88,7 +81,6 @@
"devDependencies": { "devDependencies": {
"concurrently": "2.1.0", "concurrently": "2.1.0",
"cpx": "1.3.1", "cpx": "1.3.1",
"http-server": "0.8.5",
"jasmine-core": "2.4.1", "jasmine-core": "2.4.1",
"karma": "0.13.22", "karma": "0.13.22",
"karma-chrome-launcher": "1.0.1", "karma-chrome-launcher": "1.0.1",
@@ -110,13 +102,7 @@
}, },
"license-check-config": { "license-check-config": {
"src": [ "src": [
"**/*.js", "./dist/**/*.js"
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "path": "assets/license_header.txt",
"blocking": true, "blocking": true,

View File

@@ -88,7 +88,7 @@ export class AlfrescoLoginComponent {
} }
}; };
translate.addTranslationFolder('node_modules/ng2-alfresco-login'); translate.addTranslationFolder('node_modules/ng2-alfresco-login/dist/src');
this.form.valueChanges.subscribe(data => this.onValueChanged(data)); this.form.valueChanges.subscribe(data => this.onValueChanged(data));

View File

@@ -4,22 +4,15 @@
"version": "0.2.0", "version": "0.2.0",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"postinstall": "typings install",
"clean": "rimraf dist node_modules typings", "clean": "rimraf dist node_modules typings",
"typings": "typings install", "typings": "typings install",
"build": "npm run tslint && typings install && rimraf dist && tsc && npm run copytemplates && license-check", "build": "npm run tslint && rimraf dist && tsc && npm run copy-dist && license-check",
"build:w": "npm run tslint && typings install && rimraf dist && npm run watch-task", "build:w": "npm run tslint && rimraf dist && npm run watch-task",
"watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copy-dist:w\" \"license-check\"",
"tslint": "npm run tslint-src && npm run tslint-root", "tslint": "tslint -c tslint.json *.ts && tslint -c tslint.json src/{,**/}**.ts",
"tslint-src": "tslint -c tslint.json src/{,**/}**.ts", "copy-dist": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src",
"tslint-root": "tslint -c tslint.json *.ts", "copy-dist:w": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src -w",
"copytemplates": "npm run copy-html-css && npm run copy-i18n && npm run copy-images",
"copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\" \"npm run copy-images:w\"",
"copy-html-css": "cpx \"./src/**/*.{html,css}\" ./dist/src",
"copy-html-css:w": "cpx \"./src/**/*.{html,css}\" ./dist/src -w",
"copy-i18n": "cpx \"./i18n/**/*.json\" ./dist/i18n",
"copy-i18n:w": "cpx \"./i18n/**/*.json\" ./dist/i18n -w",
"copy-images": "cpx \"./src/**/*.{png,jpg,gif,svg}\" ./dist/src",
"copy-images:w": "cpx \"./src/**/*.{png,jpg,gif,svg}\" ./dist/src -w",
"tsc": "tsc", "tsc": "tsc",
"tsc:w": "tsc -w", "tsc:w": "tsc -w",
"pretest": "npm run build", "pretest": "npm run build",
@@ -108,13 +101,7 @@
}, },
"license-check-config": { "license-check-config": {
"src": [ "src": [
"**/*.js", "./dist/**/*.js"
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "path": "assets/license_header.txt",
"blocking": true, "blocking": true,

View File

@@ -57,7 +57,7 @@ export class AlfrescoSearchAutocompleteComponent implements OnChanges {
private translate: AlfrescoTranslationService, private translate: AlfrescoTranslationService,
private alfrescoThumbnailService: AlfrescoThumbnailService) { private alfrescoThumbnailService: AlfrescoThumbnailService) {
if (translate) { if (translate) {
translate.addTranslationFolder('node_modules/ng2-alfresco-search'); translate.addTranslationFolder('node_modules/ng2-alfresco-search/dist/src');
} }
this.results = null; this.results = null;
} }

View File

@@ -83,7 +83,7 @@ export class AlfrescoSearchControlComponent implements AfterViewInit {
} }
); );
translate.addTranslationFolder('node_modules/ng2-alfresco-search'); translate.addTranslationFolder('node_modules/ng2-alfresco-search/dist/src');
} }
ngAfterViewInit(): void { ngAfterViewInit(): void {

View File

@@ -67,7 +67,7 @@ describe('AlfrescoSearchComponent', () => {
let search = new AlfrescoSearchComponent(null, translation, null, null); let search = new AlfrescoSearchComponent(null, translation, null, null);
expect(search).toBeDefined(); expect(search).toBeDefined();
expect(translation.addTranslationFolder).toHaveBeenCalledWith('node_modules/ng2-alfresco-search'); expect(translation.addTranslationFolder).toHaveBeenCalledWith('node_modules/ng2-alfresco-search/dist/src');
}); });
describe('Rendering search results', () => { describe('Rendering search results', () => {

View File

@@ -70,7 +70,7 @@ export class AlfrescoSearchComponent implements OnChanges, OnInit {
@Optional() params: RouteParams) { @Optional() params: RouteParams) {
if (translate !== null) { if (translate !== null) {
translate.addTranslationFolder('node_modules/ng2-alfresco-search'); translate.addTranslationFolder('node_modules/ng2-alfresco-search/dist/src');
} }
this.results = null; this.results = null;

View File

@@ -4,20 +4,15 @@
"version": "0.2.0", "version": "0.2.0",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"postinstall": "typings install",
"clean": "rimraf dist node_modules typings", "clean": "rimraf dist node_modules typings",
"typings": "typings install", "typings": "typings install",
"build": "npm run tslint && typings install && rimraf dist && tsc && npm run copytemplates && license-check", "build": "npm run tslint && rimraf dist && tsc && npm run copy-dist && license-check",
"build:w": "npm run tslint && typings install && rimraf dist && npm run watch-task", "build:w": "npm run tslint && rimraf dist && npm run watch-task",
"watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copy-dist:w\" \"license-check\"",
"tslint": "npm run tslint-src && npm run tslint-root", "tslint": "tslint -c tslint.json *.ts && tslint -c tslint.json src/{,**/}**.ts",
"tslint-src": "tslint -c tslint.json src/{,**/}**.ts", "copy-dist": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src",
"tslint-root": "tslint -c tslint.json *.ts", "copy-dist:w": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src -w",
"copytemplates": "npm run copy-html-css && npm run copy-i18n",
"copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"",
"copy-html-css": "cpx \"./src/**/*.{html,css}\" ./dist/src",
"copy-html-css:w": "cpx \"./src/**/*.{html,css}\" ./dist/src -w",
"copy-i18n": "cpx \"./i18n/**/*.json\" ./dist/i18n",
"copy-i18n:w": "cpx \"./i18n/**/*.json\" ./dist/i18n -w",
"tsc": "tsc", "tsc": "tsc",
"tsc:w": "tsc -w", "tsc:w": "tsc -w",
"pretest": "npm run build", "pretest": "npm run build",
@@ -108,13 +103,7 @@
}, },
"license-check-config": { "license-check-config": {
"src": [ "src": [
"**/*.js", "./dist/**/*.js"
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "path": "assets/license_header.txt",
"blocking": true, "blocking": true,

View File

@@ -56,7 +56,7 @@ export class FileUploadingDialogComponent implements OnInit {
constructor(private cd: ChangeDetectorRef, constructor(private cd: ChangeDetectorRef,
translate: AlfrescoTranslationService, translate: AlfrescoTranslationService,
private _uploaderService: UploadService) { private _uploaderService: UploadService) {
translate.addTranslationFolder('node_modules/ng2-alfresco-upload'); translate.addTranslationFolder('node_modules/ng2-alfresco-upload/dist/src');
} }
ngOnInit() { ngOnInit() {

View File

@@ -92,7 +92,7 @@ export class UploadButtonComponent {
let formFields = this.createFormFields(); let formFields = this.createFormFields();
this._uploaderService.setOptions(formFields); this._uploaderService.setOptions(formFields);
this.translate = translate; this.translate = translate;
this.translate.addTranslationFolder('node_modules/ng2-alfresco-upload'); this.translate.addTranslationFolder('node_modules/ng2-alfresco-upload/dist/src');
} }
/** /**

View File

@@ -66,7 +66,7 @@ export class UploadDragAreaComponent {
this._uploaderService.setOptions(formFields); this._uploaderService.setOptions(formFields);
this.translate = translate; this.translate = translate;
this.translate.addTranslationFolder('node_modules/ng2-alfresco-upload'); this.translate.addTranslationFolder('node_modules/ng2-alfresco-upload/dist/src');
} }
/** /**

View File

@@ -4,20 +4,15 @@
"version": "0.2.0", "version": "0.2.0",
"author": "Alfresco Software, Ltd.", "author": "Alfresco Software, Ltd.",
"scripts": { "scripts": {
"postinstall": "typings install",
"clean": "rimraf dist node_modules typings", "clean": "rimraf dist node_modules typings",
"typings": "typings install", "typings": "typings install",
"build": "npm run tslint && typings install && rimraf dist && tsc && npm run copytemplates && license-check", "build": "npm run tslint && rimraf dist && tsc && npm run copy-dist && license-check",
"build:w": "npm run tslint && typings install && rimraf dist && npm run watch-task", "build:w": "npm run tslint && rimraf dist && npm run watch-task",
"watch-task": "concurrently \"npm run tsc:w\" \"npm run copytemplates:w\" \"license-check\"", "watch-task": "concurrently \"npm run tsc:w\" \"npm run copy-dist:w\" \"license-check\"",
"tslint": "npm run tslint-src && npm run tslint-root", "tslint": "tslint -c tslint.json *.ts && tslint -c tslint.json src/{,**/}**.ts",
"tslint-src": "tslint -c tslint.json src/{,**/}**.ts", "copy-dist": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src",
"tslint-root": "tslint -c tslint.json *.ts", "copy-dist:w": "cpx \"./src/**/*.{html,css,json,png,jpg,gif,svg}\" ./dist/src -w",
"copytemplates": "npm run copy-html-css && npm run copy-i18n",
"copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"",
"copy-html-css": "cpx \"./src/**/*.{html,css}\" ./dist/src",
"copy-html-css:w": "cpx \"./src/**/*.{html,css}\" ./dist/src -w",
"copy-i18n": "cpx \"./i18n/**/*.json\" ./dist/i18n",
"copy-i18n:w": "cpx \"./i18n/**/*.json\" ./dist/i18n -w",
"tsc": "tsc", "tsc": "tsc",
"tsc:w": "tsc -w", "tsc:w": "tsc -w",
"pretest": "npm run build", "pretest": "npm run build",
@@ -78,7 +73,6 @@
"concurrently": "2.1.0", "concurrently": "2.1.0",
"coveralls": "2.11.9", "coveralls": "2.11.9",
"cpx": "1.3.1", "cpx": "1.3.1",
"http-server": "0.8.5",
"jasmine-ajax": "3.2.0", "jasmine-ajax": "3.2.0",
"jasmine-core": "2.4.1", "jasmine-core": "2.4.1",
"karma": "0.13.22", "karma": "0.13.22",
@@ -100,13 +94,7 @@
}, },
"license-check-config": { "license-check-config": {
"src": [ "src": [
"**/*.js", "./dist/**/*.js"
"**/*.ts",
"!/**/coverage/**/*",
"!/**/demo/**/*",
"!/**/node_modules/**/*",
"!/**/typings/**/*",
"!*.js"
], ],
"path": "assets/license_header.txt", "path": "assets/license_header.txt",
"blocking": true, "blocking": true,