add ng2-webpack-config

This commit is contained in:
Oleksandr Telnov
2016-09-15 10:22:43 +03:00
parent 0e7e397f7d
commit cdc76cced0
29 changed files with 305 additions and 428 deletions

2
.gitignore vendored
View File

@@ -8,6 +8,7 @@ npm-debug.log
# WebStorm # WebStorm
.idea .idea
.vscode
# ignore build and dist for now # ignore build and dist for now
/bundles /bundles
@@ -19,6 +20,7 @@ npm-debug.log
# ignore incline compiling # ignore incline compiling
/demo/**/*.js /demo/**/*.js
/demo/**/*.d.ts /demo/**/*.d.ts
!/demo/custom-typings.d.ts
/demo/**/*.js.map /demo/**/*.js.map
/components/**/*.js /components/**/*.js
/components/**/*.d.ts /components/**/*.d.ts

29
.ng2-config.js Normal file
View File

@@ -0,0 +1,29 @@
'use strict';
var pkg = require('./package.json');
module.exports = {
// metadata
title: pkg.description,
baseUrl: '/',
// root folder name
src: 'demo',
dist: 'demo-build',
htmlIndexes: ['index.html'],
// karma bundle src
spec: './spec-bundle.js',
// webpack entry
entry: {
polyfills: './demo/polyfills.ts',
vendor: './demo/vendor.ts',
main: './demo/index.ts'
},
commonChunks: {
name: ['polyfills', 'vendor'].reverse()
},
// webpack alias
alias: {},
copy: [
{from: 'demo/favicon.ico', to: 'favicon.ico'},
{from: 'demo/assets', to: 'assets'}
]
};

View File

@@ -2,12 +2,14 @@ language: node_js
node_js: node_js:
- "6" - "6"
before_install: npm i -g npm@latest
script: script:
- npm run flow.install:typings - npm run flow.install:typings
- npm test - npm test
after_success: after_success:
- ./node_modules/.bin/codecov - ./node_modules/.bin/codecov -f coverage/coverage-final.json
addons: addons:
# sauce labs tunel connector (read more https://docs.travis-ci.com/user/sauce-connect/ ) # sauce labs tunel connector (read more https://docs.travis-ci.com/user/sauce-connect/ )

View File

@@ -1,4 +1,4 @@
import { Component} from '@angular/core'; import { Component } from '@angular/core';
import { inject, ComponentFixture, TestBed } from '@angular/core/testing'; import { inject, ComponentFixture, TestBed } from '@angular/core/testing';
import { FileUploader } from './file-uploader.class'; import { FileUploader } from './file-uploader.class';

View File

@@ -9,6 +9,7 @@ export class FileDropDirective {
@Output() public onFileDrop:EventEmitter<File[]> = new EventEmitter<File[]>(); @Output() public onFileDrop:EventEmitter<File[]> = new EventEmitter<File[]>();
private element:ElementRef; private element:ElementRef;
public constructor(element:ElementRef) { public constructor(element:ElementRef) {
this.element = element; this.element = element;
} }
@@ -80,12 +81,13 @@ export class FileDropDirective {
return false; return false;
} }
} }
/*
_addOverClass(item:any):any {
item.addOverClass();
}
_removeOverClass(item:any):any { /*
item.removeOverClass(); _addOverClass(item:any):any {
}*/ item.addOverClass();
}
_removeOverClass(item:any):any {
item.removeOverClass();
}*/
} }

View File

@@ -1,5 +1,5 @@
import {FileLikeObject} from './file-like-object.class'; import { FileLikeObject } from './file-like-object.class';
import {FileUploader, ParsedResponseHeaders, FileUploaderOptions} from './file-uploader.class'; import { FileUploader, ParsedResponseHeaders, FileUploaderOptions } from './file-uploader.class';
export class FileItem { export class FileItem {
public file:FileLikeObject; public file:FileLikeObject;
@@ -67,19 +67,19 @@ export class FileItem {
} }
public onSuccess(response:string, status:number, headers:ParsedResponseHeaders):any { public onSuccess(response:string, status:number, headers:ParsedResponseHeaders):any {
return {response,status,headers}; return {response, status, headers};
} }
public onError(response:string, status:number, headers:ParsedResponseHeaders):any { public onError(response:string, status:number, headers:ParsedResponseHeaders):any {
return {response,status,headers}; return {response, status, headers};
} }
public onCancel(response:string, status:number, headers:ParsedResponseHeaders):any { public onCancel(response:string, status:number, headers:ParsedResponseHeaders):any {
return {response,status,headers}; return {response, status, headers};
} }
public onComplete(response:string, status:number, headers:ParsedResponseHeaders):any { public onComplete(response:string, status:number, headers:ParsedResponseHeaders):any {
return {response,status,headers}; return {response, status, headers};
} }
public _onBeforeUpload():void { public _onBeforeUpload():void {

View File

@@ -23,7 +23,7 @@ export class FileLikeObject {
this.name = path.slice(path.lastIndexOf('/') + path.lastIndexOf('\\') + 2); this.name = path.slice(path.lastIndexOf('/') + path.lastIndexOf('\\') + 2);
} }
public _createFromObject(object:{size: number, type: string, name: string}):void { public _createFromObject(object:{size:number, type:string, name:string}):void {
// this.lastModifiedDate = copy(object.lastModifiedDate); // this.lastModifiedDate = copy(object.lastModifiedDate);
this.size = object.size; this.size = object.size;
this.type = object.type; this.type = object.type;

View File

@@ -1,6 +1,6 @@
import { Directive, ElementRef, Input, HostListener } from '@angular/core'; import { Directive, ElementRef, Input, HostListener } from '@angular/core';
import {FileUploader} from './file-uploader.class'; import { FileUploader } from './file-uploader.class';
// todo: filters // todo: filters
@@ -9,6 +9,7 @@ export class FileSelectDirective {
@Input() public uploader:FileUploader; @Input() public uploader:FileUploader;
private element:ElementRef; private element:ElementRef;
public constructor(element:ElementRef) { public constructor(element:ElementRef) {
this.element = element; this.element = element;
} }

View File

@@ -5,9 +5,9 @@ import { FileDropDirective } from './file-drop.directive';
import { FileSelectDirective } from './file-select.directive'; import { FileSelectDirective } from './file-select.directive';
@NgModule({ @NgModule({
imports: [CommonModule], imports: [CommonModule],
declarations: [FileDropDirective, FileSelectDirective], declarations: [FileDropDirective, FileSelectDirective],
exports: [FileDropDirective, FileSelectDirective] exports: [FileDropDirective, FileSelectDirective]
}) })
export class FileUploadModule { export class FileUploadModule {
} }

View File

@@ -1,6 +1,6 @@
import {FileLikeObject} from './file-like-object.class'; import { FileLikeObject } from './file-like-object.class';
import {FileItem} from './file-item.class'; import { FileItem } from './file-item.class';
import {FileType} from './file-type.class'; import { FileType } from './file-type.class';
function isFile(value:any):boolean { function isFile(value:any):boolean {
return (File && value instanceof File); return (File && value instanceof File);
@@ -295,13 +295,13 @@ export class FileUploader {
if (typeof item._file.size !== 'number') { if (typeof item._file.size !== 'number') {
throw new TypeError('The file specified is no longer valid'); throw new TypeError('The file specified is no longer valid');
} }
if(!this.options.disableMultipart) { if (!this.options.disableMultipart) {
sendable = new FormData(); sendable = new FormData();
this._onBuildItemForm(item, sendable); this._onBuildItemForm(item, sendable);
sendable.append(item.alias, item._file, item.file.name); sendable.append(item.alias, item._file, item.file.name);
} else { } else {
sendable = item._file; sendable = item._file;
} }
xhr.upload.onprogress = (event:any) => { xhr.upload.onprogress = (event:any) => {

View File

@@ -1,6 +1,6 @@
### Usage ### Usage
```typescript ```typescript
import {FileSelectDirective, FileDropDirective, FileUploader} from 'ng2-file-upload/ng2-file-upload'; import { FileSelectDirective, FileDropDirective, FileUploader } from 'ng2-file-upload/ng2-file-upload';
``` ```
### Annotations ### Annotations

View File

@@ -1,4 +1,4 @@
import {Component} from '@angular/core'; import { Component } from '@angular/core';
let gettingStarted = require('./getting-started.md'); let gettingStarted = require('./getting-started.md');

View File

@@ -1,4 +1,4 @@
import {Component} from '@angular/core'; import { Component } from '@angular/core';
let doc = require('../../components/file-upload/readme.md'); let doc = require('../../components/file-upload/readme.md');

View File

@@ -1,5 +1,5 @@
import {Component, ElementRef, Renderer, Input, HostListener, HostBinding, OnInit} from '@angular/core'; import { Component, ElementRef, Renderer, Input, HostListener, HostBinding, OnInit } from '@angular/core';
import {FileUploader, FileUploaderOptions} from '../../../../ng2-file-upload'; import { FileUploader, FileUploaderOptions } from '../../../../ng2-file-upload';
@Component({ @Component({
selector: 'demo-file-upload', selector: 'demo-file-upload',

1
demo/custom-typings.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
declare const ENV:string;

View File

@@ -10,9 +10,9 @@ import { FileUploadSectionComponent } from './components/file-upload-section';
import { SimpleDemoComponent } from './components/file-upload/simple-demo'; import { SimpleDemoComponent } from './components/file-upload/simple-demo';
@NgModule({ @NgModule({
imports: [BrowserModule, CommonModule, FileUploadModule, Ng2BootstrapModule, FormsModule], imports: [BrowserModule, CommonModule, FileUploadModule, Ng2BootstrapModule, FormsModule],
declarations: [DemoComponent, FileUploadSectionComponent, SimpleDemoComponent], declarations: [DemoComponent, FileUploadSectionComponent, SimpleDemoComponent],
bootstrap: [DemoComponent] bootstrap: [DemoComponent]
}) })
export class NgFileUploadDemo { export class NgFileUploadDemo {
} }

28
demo/polyfills.ts Normal file
View File

@@ -0,0 +1,28 @@
// Polyfills
// (these modules are what are in 'angular2/bundles/angular2-polyfills' so don't use that here)
// import 'ie-shim'; // Internet Explorer
// import 'es6-shim';
// import 'es6-promise';
// import 'es7-reflect-metadata';
// Prefer CoreJS over the polyfills above
import 'core-js/es6';
import 'core-js/es7/reflect';
require('zone.js/dist/zone');
require('reflect-metadata');
// Typescript emit helpers polyfill
import 'ts-helpers';
if ('production' === ENV) {
// Production
} else {
// Development
(Error as any).stackTraceLimit = Infinity;
require('zone.js/dist/long-stack-trace-zone');
}

23
demo/vendor.ts Normal file
View File

@@ -0,0 +1,23 @@
// For vendors for example jQuery, Lodash, angular2-jwt just import them here unless you plan on
// chunking vendors files for async loading. You would need to import the async loaded vendors
// at the entry point of the async loaded file. Also see custom-typings.d.ts as you also need to
// run `typings install x` where `x` is your module
// Angular 2
import '@angular/common';
import '@angular/core';
import '@angular/forms';
import '@angular/platform-browser';
import '@angular/platform-browser-dynamic';
// RxJS
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/mergeMap';
if ('production' === ENV) {
// Production
} else {
// Development
}

View File

@@ -2,17 +2,20 @@
const gulp = require('gulp'); const gulp = require('gulp');
const tslint = require('gulp-tslint'); const tslint = require('gulp-tslint');
const paths = gulp.paths; const gitignore = require('gitignore-to-glob')();
gitignore.push('**/*.ts');
gulp.task('tslint', () => gulp.task('tslint', () =>
gulp gulp
.src(paths.tssrc) .src(gitignore)
.pipe(tslint()) .pipe(tslint({
.pipe(tslint.report('prose', { formatter: 'verbose',
emitError: true, emitError: true,
summarizeFailureOutput: true, summarizeFailureOutput: true,
reportLimit: 50 reportLimit: 50
})) }))
.pipe(tslint.report())
); );
gulp.task('lint', ['tslint']); gulp.task('lint', ['tslint']);

View File

@@ -2,15 +2,6 @@
const gulp = require('gulp'); const gulp = require('gulp');
gulp.paths = {
tssrc: [
'**/*.ts',
'!**/*.d.ts',
'!node_modules/**/*',
'!bundles/**/*',
'!typings/**/*']
};
require('require-dir')('./gulp-tasks'); require('require-dir')('./gulp-tasks');
gulp.task('default', () => { gulp.task('default', () => {

View File

@@ -1,101 +1,5 @@
'use strict'; 'use strict';
const path = require('path'); const config = require('./.ng2-config');
const cwd = process.cwd();
module.exports = config => { module.exports = require('ng2-webpack-config').karma(config);
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
basePath: '',
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
{pattern: 'test.bundle.js', watched: false}
],
// list of files to exclude
exclude: [],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'test.bundle.js': ['coverage', 'webpack', 'sourcemap']
},
webpack: {
resolve: {
root: [path.resolve(cwd)],
modulesDirectories: ['node_modules', 'demo', 'components', 'test', '.'],
extensions: ['', '.ts', '.js', '.css']
},
module: {
loaders: [
{test: /\.ts$/, loader: 'ts-loader', exclude: [/node_modules/]}
],
postLoaders: [
// instrument only testing sources with Istanbul
{
test: /\.(js|ts)$/,
include: root('components'),
loader: 'istanbul-instrumenter-loader',
exclude: [
/\.e2e\.ts$/,
/node_modules/
]
}
]
},
stats: {
colors: true,
reasons: true
},
watch: true,
debug: true
},
coverageReporter: {
dir: 'coverage/',
reporters: [
{type: 'text'},
{type: 'json'},
{type: 'html'}
]
},
webpackServer: {noInfo: true},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['spec', 'coverage'],
// web server port
port: 9876,
// enable / disable colors in the output (reporters and logs)
colors: true,
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR ||
// config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: false,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['PhantomJS'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: true
});
};
function root(partialPath) {
return path.join(__dirname, partialPath);
}

View File

@@ -4,8 +4,8 @@
"description": "angular2 file upload directives", "description": "angular2 file upload directives",
"scripts": { "scripts": {
"flow.install:typings": "./node_modules/.bin/typings install", "flow.install:typings": "./node_modules/.bin/typings install",
"flow.compile": "npm run flow.install:typings && npm run flow.compile:common && npm run flow.compile:system ", "flow.compile": "npm run flow.install:typings && npm run flow.compile:common && npm run flow.compile:system",
"flow.compile:common": "./node_modules/.bin/tsc", "flow.compile:common": "./node_modules/.bin/tsc -p tsconfig.publish.json",
"flow.compile:system": "./.config/bundle-system.js", "flow.compile:system": "./.config/bundle-system.js",
"flow.copy:src": "./node_modules/.bin/cpy ng2-file-upload.ts \"components/*.ts\" ts --parents", "flow.copy:src": "./node_modules/.bin/cpy ng2-file-upload.ts \"components/*.ts\" ts --parents",
"flow.clean": "./node_modules/.bin/del bundles coverage demo-build typings \"components/**/*.+(js|d.ts|js.map)\" dist \"ng2-file-upload.+(js|d.ts|js.map)\"", "flow.clean": "./node_modules/.bin/del bundles coverage demo-build typings \"components/**/*.+(js|d.ts|js.map)\" dist \"ng2-file-upload.+(js|d.ts|js.map)\"",
@@ -15,7 +15,7 @@
"flow.lint": "npm run flow.eslint && npm run flow.tslint", "flow.lint": "npm run flow.eslint && npm run flow.tslint",
"flow.changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -p angular -v", "flow.changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -p angular -v",
"flow.github-release": "./node_modules/.bin/conventional-github-releaser -p angular", "flow.github-release": "./node_modules/.bin/conventional-github-releaser -p angular",
"flow.build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --progress --color", "flow.build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --progress --color --display-error-details --display-cached",
"flow.build:dev": "./node_modules/.bin/webpack --progress --color", "flow.build:dev": "./node_modules/.bin/webpack --progress --color",
"flow.serve:dev": "./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached", "flow.serve:dev": "./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
"flow.serve:prod": "NODE_ENV=production ./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached", "flow.serve:prod": "NODE_ENV=production ./node_modules/.bin/webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
@@ -24,9 +24,10 @@
"start": "npm run flow.serve:dev", "start": "npm run flow.serve:dev",
"pretest": "npm run flow.lint", "pretest": "npm run flow.lint",
"test": "NODE_ENV=test ./node_modules/.bin/karma start", "test": "NODE_ENV=test ./node_modules/.bin/karma start",
"test:watch": "NODE_ENV=test ./node_modules/.bin/karma start --auto-watch --no-single-run",
"preversion": "npm test", "preversion": "npm test",
"version": "npm run flow.changelog && git add -A", "version": "npm run flow.changelog && git add -A",
"postversion": "git push origin master && git push --tags" "postversion": "git push origin development && git push --tags"
}, },
"main": "ng2-file-upload.js", "main": "ng2-file-upload.js",
"typings": "ng2-file-upload.d.ts", "typings": "ng2-file-upload.d.ts",
@@ -34,7 +35,9 @@
"angular2", "angular2",
"bootstrap", "bootstrap",
"angularjs", "angularjs",
"twitter-bootstrap" "twitter-bootstrap",
"file-upload",
"angular-file-upload"
], ],
"author": "Vyacheslav Chub <vyacheslav.chub@valor-software.com>", "author": "Vyacheslav Chub <vyacheslav.chub@valor-software.com>",
"license": "MIT", "license": "MIT",
@@ -48,70 +51,49 @@
"homepage": "https://github.com/valor-software/ng2-file-upload#readme", "homepage": "https://github.com/valor-software/ng2-file-upload#readme",
"dependencies": {}, "dependencies": {},
"peerDependencies": { "peerDependencies": {
"@angular/common": "2.0.0-rc.6", "@angular/common": "2.0.0-rc.7",
"@angular/core": "2.0.0-rc.6" "@angular/compiler": "2.0.0-rc.7",
"@angular/core": "2.0.0-rc.7",
"@angular/forms": "2.0.0-rc.7"
}, },
"devDependencies": { "devDependencies": {
"@angular/common": "2.0.0-rc.6", "@angular/common": "2.0.0-rc.7",
"@angular/compiler": "2.0.0-rc.6", "@angular/compiler": "2.0.0-rc.7",
"@angular/core": "2.0.0-rc.6", "@angular/core": "2.0.0-rc.7",
"@angular/platform-browser": "2.0.0-rc.6", "@angular/forms": "2.0.0-rc.7",
"@angular/platform-browser-dynamic": "2.0.0-rc.6", "@angular/platform-browser": "2.0.0-rc.7",
"@angular/forms": "2.0.0-rc.6", "@angular/platform-browser-dynamic": "2.0.0-rc.7",
"async": "1.5.2", "async": "2.0.1",
"bootstrap": "3.3.6", "bootstrap": "3.3.7",
"codecov": "1.0.1", "codecov": "1.0.1",
"compression-webpack-plugin": "0.3.1",
"conventional-changelog-cli": "1.2.0", "conventional-changelog-cli": "1.2.0",
"conventional-github-releaser": "1.1.2", "conventional-github-releaser": "1.1.3",
"copy-webpack-plugin": "3.0.1",
"cpy-cli": "1.0.1", "cpy-cli": "1.0.1",
"del": "^2.2.0",
"del-cli": "0.2.0", "del-cli": "0.2.0",
"es6-promise": "3.1.2", "es6-promise": "3.3.1",
"es6-shim": "0.35.0", "es6-shim": "0.35.1",
"es7-reflect-metadata": "1.6.0", "es7-reflect-metadata": "1.6.0",
"eslint-config-valorsoft": "0.0.15", "eslint-config-valorsoft": "0.1.0",
"exports-loader": "0.6.3",
"file-loader": "0.8.5",
"gh-pages": "0.11.0", "gh-pages": "0.11.0",
"gitignore-to-glob": "0.2.1",
"gulp": "3.9.1", "gulp": "3.9.1",
"gulp-size": "2.1.0", "gulp-size": "2.1.0",
"gulp-tslint": "5.0.0", "gulp-tslint": "6.1.1",
"html-loader": "0.4.3", "lite-server": "2.2.2",
"html-webpack-plugin": "2.19.0", "marked": "0.3.6",
"istanbul-instrumenter-loader": "0.2.0", "ng2-bootstrap": "1.1.3",
"jasmine": "2.4.1", "ng2-webpack-config": "0.0.4",
"karma": "0.13.22",
"karma-chrome-launcher": "1.0.1",
"karma-coverage": "1.0.0",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.7.0",
"lite-server": "2.2.0",
"markdown-loader": "0.1.7",
"marked": "0.3.5",
"ng2-bootstrap": "1.1.1",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "2.1.7",
"pre-commit": "1.1.3", "pre-commit": "1.1.3",
"prismjs": "1.4.1", "prismjs": "1.5.1",
"prismjs-loader": "0.0.3", "prismjs-loader": "0.0.3",
"raw-loader": "0.5.1", "reflect-metadata": "0.1.8",
"reflect-metadata": "0.1.2",
"require-dir": "0.3.0", "require-dir": "0.3.0",
"rxjs": "5.0.0-beta.11", "rxjs": "5.0.0-beta.11",
"source-map-loader": "0.1.5", "systemjs-builder": "0.15.31",
"systemjs-builder": "0.15.19", "tslint-config-valorsoft": "1.1.1",
"ts-loader": "0.8.2",
"tslint-config-valorsoft": "1.0.3",
"typescript": "1.8.10", "typescript": "1.8.10",
"typings": "0.8.1", "typings": "1.3.3",
"webpack": "1.13.1", "zone.js": "0.6.23"
"webpack-dev-server": "1.14.1",
"zone.js": "0.6.17"
}, },
"contributors": [ "contributors": [
{ {
@@ -123,6 +105,16 @@
"name": "Dmitriy Shekhovtsov", "name": "Dmitriy Shekhovtsov",
"email": "valorkin@gmail.com", "email": "valorkin@gmail.com",
"url": "https://github.com/valorkin" "url": "https://github.com/valorkin"
},
{
"name": "Adrian Faciu",
"email": "adrian.faciu@gmail.com",
"url": "https://github.com/adrianfaciu"
},
{
"name": "Oleksandr Telnov",
"email": "otelnov@gmail.com",
"url": "https://github.com/otelnov"
} }
] ]
} }

5
protractor.conf.js Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
const config = require('./.ng2-config');
module.exports.config = require('ng2-webpack-config').protractor(config);

65
spec-bundle.js Normal file
View File

@@ -0,0 +1,65 @@
/* eslint no-var: 0, vars-on-top: 0 */
/**
* @author: @AngularClass
*/
/*
* When testing with webpack and ES6, we have to do some extra
* things to get testing to work right. Because we are gonna write tests
* in ES6 too, we have to compile those as well. That's handled in
* karma.conf.js with the karma-webpack plugin. This is the entry
* file for webpack test. Just like webpack will create a bundle.js
* file for our client, when we run test, it will compile and bundle them
* all here! Crazy huh. So we need to do some setup
*/
'use strict';
Error.stackTraceLimit = Infinity;
require('core-js');
// Typescript emit helpers polyfill
require('ts-helpers');
require('zone.js/dist/zone');
require('zone.js/dist/long-stack-trace-zone');
require('zone.js/dist/async-test');
require('zone.js/dist/fake-async-test');
require('zone.js/dist/sync-test');
require('zone.js/dist/proxy');
require('zone.js/dist/jasmine-patch');
// RxJS
require('rxjs/Rx');
var testing = require('@angular/core/testing');
var browser = require('@angular/platform-browser-dynamic/testing');
testing.TestBed.initTestEnvironment(
browser.BrowserDynamicTestingModule,
browser.platformBrowserDynamicTesting()
);
Object.assign(global, testing);
/*
* Ok, this is kinda crazy. We can use the the context method on
* require that webpack created in order to tell webpack
* what files we actually want to require or import.
* Below, context will be an function/object with file names as keys.
* using that regex we are saying look in ./src/app and ./test then find
* any file that ends with spec.js and get its path. By passing in true
* we say do this recursively
*/
var testContext = require.context('./components', true, /\.spec\.ts/);
/*
* get all the files, for each file, call the context function
* that will require the file and load it up here. Context will
* loop and require those spec files here
*/
function requireAll(requireContext) {
return requireContext.keys().map(requireContext);
}
// requires and returns all modules that match
requireAll(testContext);

View File

@@ -1,50 +0,0 @@
'use strict';
/* eslint vars-on-top:0 no-var:0 */
// @AngularClass
/*
* When testing with webpack and ES6, we have to do some extra
* things get testing to work right. Because we are gonna write test
* in ES6 to, we have to compile those as well. That's handled in
* karma.conf.js with the karma-webpack plugin. This is the entry
* file for webpack test. Just like webpack will create a bundle.js
* file for our client, when we run test, it well compile and bundle them
* all here! Crazy huh. So we need to do some setup
*/
Error.stackTraceLimit = Infinity;
require('phantomjs-polyfill');
require('es6-promise');
require('es6-shim');
require('es7-reflect-metadata/dist/browser');
require('zone.js/dist/zone');
require('zone.js/dist/long-stack-trace-zone');
require('zone.js/dist/async-test');
require('zone.js/dist/fake-async-test');
require('zone.js/dist/sync-test');
require('zone.js/dist/proxy');
require('zone.js/dist/jasmine-patch');
var testing = require('@angular/core/testing');
var browser = require('@angular/platform-browser-dynamic/testing');
testing.TestBed.initTestEnvironment(
browser.BrowserDynamicTestingModule,
browser.platformBrowserDynamicTesting()
);
/*
Ok, this is kinda crazy. We can use the the context method on
require that webpack created in order to tell webpack
what files we actually want to require or import.
Below, context will be an function/object with file names as keys.
using that regex we are saying look in ./src/app and ./test then find
any file that ends with spec.js and get its path. By passing in true
we say do this recursively
*/
var testContext = require.context('./components', true, /\.spec\.ts/);
// get all the files, for each file, call the context function
// that will require the file and load it up here. Context will
// loop and require those spec files here
testContext.keys().forEach(testContext);

View File

@@ -2,18 +2,22 @@
"compilerOptions": { "compilerOptions": {
"target": "es5", "target": "es5",
"module": "commonjs", "module": "commonjs",
"moduleResolution": "node",
"sourceMap": false, "sourceMap": false,
"declaration": true, "declaration": true,
"removeComments": false, "removeComments": true,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"noImplicitAny": true,
"listFiles": false, "listFiles": false,
"noLib": false "noLib": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
}, },
"exclude": [
"node_modules"
],
"files": [ "files": [
"./typings/browser.d.ts", "./ng2-file-upload.ts",
"./ng2-file-upload.ts" "./demo/custom-typings.d.ts",
"./typings/index.d.ts"
] ]
} }

View File

@@ -1,4 +1,8 @@
{ {
"extends": "tslint-config-valorsoft", "extends": "tslint-config-valorsoft",
"rulesDirectory": "./node_modules/codelyzer" "rulesDirectory": "./node_modules/codelyzer",
"rules": {
"component-selector-name": [false, ""],
"only-arrow-functions": false
}
} }

View File

@@ -1,12 +1,10 @@
{ {
"dependencies": { "globalDependencies": {
"moment": "registry:npm/moment#2.10.5+20160211003958", "es6-shim": "registry:dt/es6-shim#0.31.2+20160602141504",
"webpack": "registry:npm/webpack#1.12.9+20160219013405" "jasmine": "registry:dt/jasmine#2.2.0+20160621224255",
},
"devDependencies": {},
"ambientDependencies": {
"es6-shim": "registry:dt/es6-shim#0.31.2+20160317120654",
"jasmine": "registry:dt/jasmine#2.2.0+20160317120654",
"require": "registry:dt/require#2.1.20+20160316155526" "require": "registry:dt/require#2.1.20+20160316155526"
},
"dependencies": {
"webpack": "registry:npm/webpack#1.12.9+20160418172948"
} }
} }

View File

@@ -1,15 +1,12 @@
/* eslint global-require: 0 */ /* eslint no-process-env: 0, global-require:0 */
/**
* @author: @AngularClass
*/
'use strict'; 'use strict';
const path = require('path');
const marked = require('marked');
const webpack = require('webpack');
const reqPrism = require('prismjs'); const reqPrism = require('prismjs');
const CompressionPlugin = require('compression-webpack-plugin'); const marked = require('marked');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
// marked renderer hack
marked.Renderer.prototype.code = function renderCode(code, lang) { marked.Renderer.prototype.code = function renderCode(code, lang) {
const out = this.options.highlight(code, lang); const out = this.options.highlight(code, lang);
const classMap = this.options.langPrefix + lang; const classMap = this.options.langPrefix + lang;
@@ -20,159 +17,35 @@ marked.Renderer.prototype.code = function renderCode(code, lang) {
return `<pre class="${classMap}"><code class="${classMap}">${out}\n</code></pre>\n`; return `<pre class="${classMap}"><code class="${classMap}">${out}\n</code></pre>\n`;
}; };
/*eslint no-process-env:0, camelcase:0*/ // Look in ./config folder for webpack.dev.js
const isProduction = (process.env.NODE_ENV || 'development') === 'production'; const conf = getWebpackConfig(process.env.NODE_ENV, require('./.ng2-config'));
const devtool = process.env.NODE_ENV === 'test' ? 'inline-source-map' : 'source-map';
const dest = 'demo-build';
const absDest = root(dest);
const config = { conf.markdownLoader = {
// isProduction ? 'source-map' : 'evale', langPrefix: 'language-',
devtool, highlight(code, lang) {
debug: false, const language = !lang || lang === 'html' ? 'markup' : lang;
const Prism = global.Prism || reqPrism;
verbose: true, if (!Prism.languages[language]) {
displayErrorDetails: true, require(`prismjs/components/prism-${language}.js`);
context: __dirname,
stats: {
colors: true,
reasons: true
},
resolve: {
cache: false,
root: __dirname,
extensions: ['', '.ts', '.js', '.json']
},
entry: {
angular2: [
// Angular 2 Deps
'es6-shim',
'es6-promise',
'zone.js',
'reflect-metadata',
'@angular/common',
'@angular/core'
],
'angular2-bootstrap': ['ng2-file-upload'],
'angular2-bootstrap-demo': 'demo'
},
output: {
path: absDest,
filename: '[name].js',
sourceMapFilename: '[name].js.map',
chunkFilename: '[id].chunk.js'
},
// our Development Server configs
devServer: {
inline: true,
colors: true,
historyApiFallback: true,
contentBase: dest,
//publicPath: dest,
outputPath: dest,
watchOptions: {aggregateTimeout: 300, poll: 1000}
},
markdownLoader: {
langPrefix: 'language-',
highlight(code, lang) {
const language = !lang || lang === 'html' ? 'markup' : lang;
const Prism = global.Prism || reqPrism;
if (!Prism.languages[language]) {
require(`prismjs/components/prism-${language}.js`);
}
return Prism.highlight(code, Prism.languages[language]);
} }
}, return Prism.highlight(code, Prism.languages[language]);
module: {
loaders: [
// support markdown
{test: /\.md$/, loader: 'html?minimize=false!markdown'},
// Support for *.json files.
{test: /\.json$/, loader: 'json'},
// Support for CSS as raw text
{test: /\.css$/, loader: 'raw'},
// support for .html as raw text
{test: /\.html$/, loader: 'raw'},
// Support for .ts files.
{
test: /\.ts$/,
loader: 'ts',
query: {
compilerOptions: {
removeComments: true,
noEmitHelpers: false
}
},
exclude: [/\.(spec|e2e)\.ts$/]
}
],
noParse: [
/rtts_assert\/src\/rtts_assert/,
/reflect-metadata/,
/zone\.js\/dist\/zone-microtask/
]
},
plugins: [
//new Clean([dest]),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurenceOrderPlugin(true),
new webpack.optimize.CommonsChunkPlugin({
name: 'angular2',
minChunks: Infinity,
filename: 'angular2.js'
}),
// static assets
new CopyWebpackPlugin([{from: 'demo/favicon.ico', to: 'favicon.ico'}]),
new CopyWebpackPlugin([{from: 'demo/assets', to: 'assets'}]),
// generating html
new HtmlWebpackPlugin({template: 'demo/index.html'})
],
pushPlugins() {
if (!isProduction) {
return;
}
const plugins = [
//production only
new webpack.optimize.UglifyJsPlugin({
beautify: false,
mangle: false,
comments: false,
compress: {
screw_ie8: true
//warnings: false,
//drop_debugger: false
}
//verbose: true,
//beautify: false,
//quote_style: 3
}),
new CompressionPlugin({
asset: '{file}.gz',
algorithm: 'gzip',
regExp: /\.js$|\.html|\.css|.map$/,
threshold: 10240,
minRatio: 0.8
})
];
this
.plugins
.push
.apply(plugins);
} }
}; };
config.pushPlugins(); module.exports = conf;
module.exports = config; function getWebpackConfig(env, config) {
switch (env) {
function root(partialPath) { case 'prod':
return path.join(__dirname, partialPath); case 'production':
return require('ng2-webpack-config').webpack.prod(config);
case 'test':
case 'testing':
return require('ng2-webpack-config').webpack.test(config);
case 'dev':
case 'development':
default:
return require('ng2-webpack-config').webpack.dev(config);
}
} }