mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-799] add HappyPack to webpack conf (#1956)
This commit is contained in:
committed by
Eugenio Romano
parent
038a06d055
commit
ccfb63b536
2
.gitignore
vendored
2
.gitignore
vendored
@@ -14,3 +14,5 @@ src/environments/
|
|||||||
/ng2-components/config/coverage/
|
/ng2-components/config/coverage/
|
||||||
*.npmrc
|
*.npmrc
|
||||||
/demo-shell-ng2/ng2-components/
|
/demo-shell-ng2/ng2-components/
|
||||||
|
.happypack/
|
||||||
|
.happypack/
|
||||||
|
@@ -5,24 +5,6 @@ const ExtractTextPlugin = require("extract-text-webpack-plugin");
|
|||||||
const helpers = require('./helpers');
|
const helpers = require('./helpers');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
const alfrescoLibs = [
|
|
||||||
'ng2-activiti-analytics',
|
|
||||||
'ng2-activiti-diagrams',
|
|
||||||
'ng2-activiti-form',
|
|
||||||
'ng2-activiti-processlist',
|
|
||||||
'ng2-activiti-tasklist',
|
|
||||||
'ng2-alfresco-core',
|
|
||||||
'ng2-alfresco-datatable',
|
|
||||||
'ng2-alfresco-documentlist',
|
|
||||||
'ng2-alfresco-login',
|
|
||||||
'ng2-alfresco-search',
|
|
||||||
'ng2-alfresco-tag',
|
|
||||||
'ng2-alfresco-upload',
|
|
||||||
'ng2-alfresco-userinfo',
|
|
||||||
'ng2-alfresco-viewer',
|
|
||||||
'ng2-alfresco-webscript'
|
|
||||||
];
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
entry: {
|
entry: {
|
||||||
'polyfills': './app/polyfills.ts',
|
'polyfills': './app/polyfills.ts',
|
||||||
|
@@ -5,6 +5,7 @@ const commonConfig = require('./webpack.common.js');
|
|||||||
const helpers = require('./helpers');
|
const helpers = require('./helpers');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const alfrescoLibs = [
|
const alfrescoLibs = [
|
||||||
'ng2-activiti-analytics',
|
'ng2-activiti-analytics',
|
||||||
@@ -40,10 +41,9 @@ module.exports = webpackMerge(commonConfig, {
|
|||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
include: [helpers.root('app'), helpers.root('../ng2-components')],
|
include: [helpers.root('app'), helpers.root('../ng2-components')],
|
||||||
loader: [
|
loader: [
|
||||||
'ts-loader',
|
'happypack/loader?id=ts','angular2-template-loader'
|
||||||
'angular2-template-loader'
|
|
||||||
],
|
],
|
||||||
exclude: [ /node_modules/, /public/, /resources/, /dist/]
|
exclude: [/node_modules/, /public/, /resources/, /dist/]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -74,6 +74,17 @@ module.exports = webpackMerge(commonConfig, {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {happyPackMode: true}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new webpack.NoEmitOnErrorsPlugin(),
|
new webpack.NoEmitOnErrorsPlugin(),
|
||||||
new ExtractTextPlugin('[name].[hash].css'),
|
new ExtractTextPlugin('[name].[hash].css'),
|
||||||
new webpack.LoaderOptionsPlugin({
|
new webpack.LoaderOptionsPlugin({
|
||||||
@@ -88,7 +99,7 @@ module.exports = webpackMerge(commonConfig, {
|
|||||||
from: '**/*',
|
from: '**/*',
|
||||||
to: `assets/${lib}/i18n/`
|
to: `assets/${lib}/i18n/`
|
||||||
}
|
}
|
||||||
}),
|
})
|
||||||
])
|
])
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
@@ -4,6 +4,7 @@ const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|||||||
const commonConfig = require('./webpack.common.js');
|
const commonConfig = require('./webpack.common.js');
|
||||||
const helpers = require('./helpers');
|
const helpers = require('./helpers');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -27,7 +28,7 @@ const alfrescoLibs = [
|
|||||||
|
|
||||||
module.exports = webpackMerge(commonConfig, {
|
module.exports = webpackMerge(commonConfig, {
|
||||||
|
|
||||||
devtool: 'source-map',
|
devtool: 'eval',
|
||||||
|
|
||||||
output: {
|
output: {
|
||||||
path: helpers.root('dist'),
|
path: helpers.root('dist'),
|
||||||
@@ -46,21 +47,33 @@ module.exports = webpackMerge(commonConfig, {
|
|||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
include: [helpers.root('app'), helpers.root('../ng2-components')],
|
include: [helpers.root('app'), helpers.root('../ng2-components')],
|
||||||
use: ['ts-loader?' + JSON.stringify({
|
use: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
"compilerOptions": {
|
exclude: [/node_modules/, /public/, /resources/, /dist/]
|
||||||
"paths": {}
|
|
||||||
}
|
|
||||||
}), 'angular2-template-loader'],
|
|
||||||
exclude: [ /node_modules/, /public/, /resources/, /dist/]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 4,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([
|
new CopyWebpackPlugin([
|
||||||
... alfrescoLibs.map(lib => {
|
... alfrescoLibs.map(lib => {
|
||||||
return {
|
return {
|
||||||
context: `node_modules/${lib}/bundles/assets/` ,
|
context: `node_modules/${lib}/bundles/assets/`,
|
||||||
from: '**/*',
|
from: '**/*',
|
||||||
to: `assets/`
|
to: `assets/`
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
const webpack = require('webpack');
|
const webpack = require('webpack');
|
||||||
const helpers = require('./helpers');
|
const helpers= require('./helpers');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
||||||
@@ -14,7 +15,7 @@ module.exports = {
|
|||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
loaders: ['ts-loader', 'angular2-template-loader'],
|
loaders: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [ /public/, /resources/, /dist/]
|
exclude: [ /public/, /resources/, /dist/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -36,6 +37,17 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 4,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {happyPackMode: true}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new webpack.ContextReplacementPlugin(
|
new webpack.ContextReplacementPlugin(
|
||||||
// The (\\|\/) piece accounts for path separators in *nix and Windows
|
// The (\\|\/) piece accounts for path separators in *nix and Windows
|
||||||
/angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/,
|
/angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/,
|
||||||
|
@@ -14,7 +14,7 @@
|
|||||||
"clean-build": "rimraf 'app/{,**/}**.js' 'app/{,**/}**.js.map' 'app/{,**/}**.d.ts'",
|
"clean-build": "rimraf 'app/{,**/}**.js' 'app/{,**/}**.js.map' 'app/{,**/}**.d.ts'",
|
||||||
"server-versions": "rimraf versions.json && npm list --depth=0 --json=true --prod=true > versions.json || exit 0",
|
"server-versions": "rimraf versions.json && npm list --depth=0 --json=true --prod=true > versions.json || exit 0",
|
||||||
"webpack-dev-server": "node --max_old_space_size=4096 node_modules/webpack-dev-server/bin/webpack-dev-server.js",
|
"webpack-dev-server": "node --max_old_space_size=4096 node_modules/webpack-dev-server/bin/webpack-dev-server.js",
|
||||||
"webpack": "node node_modules/webpack/bin/webpack.js",
|
"webpack": "node --max_old_space_size=4096 node_modules/webpack/bin/webpack.js",
|
||||||
"aws": "node app.js"
|
"aws": "node app.js"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
@@ -109,6 +109,7 @@
|
|||||||
"css-loader": "0.26.1",
|
"css-loader": "0.26.1",
|
||||||
"extract-text-webpack-plugin": "^2.0.0-rc.3",
|
"extract-text-webpack-plugin": "^2.0.0-rc.3",
|
||||||
"file-loader": "^0.10.0",
|
"file-loader": "^0.10.0",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"html-loader": "^0.4.4",
|
"html-loader": "^0.4.4",
|
||||||
"html-webpack-plugin": "^2.28.0",
|
"html-webpack-plugin": "^2.28.0",
|
||||||
"jasmine-core": "^2.5.2",
|
"jasmine-core": "^2.5.2",
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const alfrescoLibs = [
|
const alfrescoLibs = [
|
||||||
'ng2-activiti-analytics',
|
'ng2-activiti-analytics',
|
||||||
@@ -85,7 +86,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
loader: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -95,7 +96,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.css$/,
|
test: /\.css$/,
|
||||||
loader: ['to-string-loader', 'css-loader'],
|
loader: ['happypack/loader?id=css'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -131,6 +132,28 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
|
new HappyPack({
|
||||||
|
id: 'css',
|
||||||
|
threads: 8,
|
||||||
|
loaders: ['to-string-loader', 'css-loader' ]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([
|
new CopyWebpackPlugin([
|
||||||
... alfrescoLibs.map(lib => {
|
... alfrescoLibs.map(lib => {
|
||||||
return {
|
return {
|
||||||
@@ -155,9 +178,9 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
}),
|
}),
|
||||||
new webpack.LoaderOptionsPlugin({
|
new webpack.LoaderOptionsPlugin({
|
||||||
htmlLoader: {
|
htmlLoader: {
|
||||||
minimize: false // workaround for ng2
|
minimize: false // workaround for ng2
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
],
|
],
|
||||||
|
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -45,7 +46,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -92,6 +93,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -75,6 +75,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -44,7 +45,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -91,6 +92,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -66,6 +66,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
1
ng2-components/ng2-activiti-form/.gitignore
vendored
1
ng2-components/ng2-activiti-form/.gitignore
vendored
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -44,7 +45,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -91,6 +92,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -73,6 +73,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -47,7 +48,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -94,6 +95,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -76,6 +76,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -39,7 +40,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -86,6 +87,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -79,6 +79,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
1
ng2-components/ng2-alfresco-core/.gitignore
vendored
1
ng2-components/ng2-alfresco-core/.gitignore
vendored
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -41,7 +42,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -88,6 +89,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -84,6 +84,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -44,7 +45,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -91,6 +92,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -45,7 +46,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -92,6 +93,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -80,6 +80,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
1
ng2-components/ng2-alfresco-login/.gitignore
vendored
1
ng2-components/ng2-alfresco-login/.gitignore
vendored
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -44,7 +45,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -91,6 +92,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -82,6 +82,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -46,7 +47,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -93,6 +94,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -81,6 +81,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -44,7 +45,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -91,6 +92,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -59,6 +59,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
1
ng2-components/ng2-alfresco-tag/.gitignore
vendored
1
ng2-components/ng2-alfresco-tag/.gitignore
vendored
@@ -17,3 +17,4 @@ index.js.map.gitignore
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -44,7 +45,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -91,6 +92,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -59,6 +59,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map.gitignore
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -44,7 +45,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -91,6 +92,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -80,6 +80,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map.gitignore
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -44,7 +45,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -91,6 +92,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -59,6 +59,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map.gitignore
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -17,5 +17,6 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
|
||||||
*.tgz
|
*.tgz
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -44,7 +45,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -91,6 +92,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -75,6 +75,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -17,3 +17,4 @@ index.js.map.gitignore
|
|||||||
/package/
|
/package/
|
||||||
/bundles/
|
/bundles/
|
||||||
index.d.ts
|
index.d.ts
|
||||||
|
/.happypack
|
||||||
|
@@ -15,3 +15,4 @@ fonts/
|
|||||||
/karma.conf.js
|
/karma.conf.js
|
||||||
/gulpfile.ts
|
/gulpfile.ts
|
||||||
/.npmignore
|
/.npmignore
|
||||||
|
/.happypack
|
||||||
|
@@ -3,6 +3,7 @@ const helpers = require('./helpers');
|
|||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
var HappyPack = require('happypack');
|
||||||
|
|
||||||
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
const ENV = process.env.NODE_ENV = process.env.ENV = 'production';
|
||||||
|
|
||||||
@@ -45,7 +46,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/,
|
test: /\.ts$/,
|
||||||
use: ['ts-loader', 'angular2-template-loader'],
|
loader: ['happypack/loader?id=ts', 'angular2-template-loader'],
|
||||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -92,6 +93,22 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
|
new HappyPack({
|
||||||
|
id: 'ts',
|
||||||
|
threads: 8,
|
||||||
|
loaders: [
|
||||||
|
{
|
||||||
|
path: 'ts-loader',
|
||||||
|
query: {
|
||||||
|
happyPackMode: true,
|
||||||
|
"compilerOptions": {
|
||||||
|
"paths": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}),
|
||||||
|
|
||||||
new CopyWebpackPlugin([{
|
new CopyWebpackPlugin([{
|
||||||
from: `src/i18n/`,
|
from: `src/i18n/`,
|
||||||
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
to: `bundles/assets/${path.basename(helpers.root(''))}/i18n/`
|
||||||
|
@@ -60,6 +60,7 @@
|
|||||||
"istanbul-instrumenter-loader": "0.2.0",
|
"istanbul-instrumenter-loader": "0.2.0",
|
||||||
"jasmine-ajax": "^3.2.0",
|
"jasmine-ajax": "^3.2.0",
|
||||||
"jasmine-core": "2.4.1",
|
"jasmine-core": "2.4.1",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -52,6 +52,7 @@
|
|||||||
"copy-webpack-plugin": "^4.0.1",
|
"copy-webpack-plugin": "^4.0.1",
|
||||||
"extract-text-webpack-plugin": "^2.0.0-rc.3",
|
"extract-text-webpack-plugin": "^2.0.0-rc.3",
|
||||||
"html-webpack-plugin": "^2.28.0",
|
"html-webpack-plugin": "^2.28.0",
|
||||||
|
"happypack": "3.0.0",
|
||||||
"karma": "^0.13.22",
|
"karma": "^0.13.22",
|
||||||
"karma-chrome-launcher": "~1.0.1",
|
"karma-chrome-launcher": "~1.0.1",
|
||||||
"karma-coverage": "^1.1.1",
|
"karma-coverage": "^1.1.1",
|
||||||
|
@@ -6,15 +6,14 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rimraf node_modules",
|
"clean": "rimraf node_modules",
|
||||||
"rimraf": "rimraf",
|
"rimraf": "rimraf",
|
||||||
"build": "npm run webpack -- --config config/webpack.build.js --progress --profile --bail",
|
"build": "webpack --config config/webpack.build.js --progress --profile --bail",
|
||||||
"test": "node node_modules/karma/bin/karma start --reporters mocha,coverage --single-run",
|
"test": "node node_modules/karma/bin/karma start --reporters mocha,coverage --single-run --component .",
|
||||||
"test-browser": "node node_modules/karma/bin/karma start karma.conf.js --reporters kjhtml",
|
"test-browser": "node node_modules/karma/bin/karma start karma.conf.js --reporters kjhtml",
|
||||||
"coverage": "",
|
"coverage": "",
|
||||||
"prepublish": "",
|
"prepublish": "",
|
||||||
"pkg-build": "package-json-merge ng2-alfresco-core/package.json ng2-alfresco-datatable/package.json ng2-activiti-diagrams/package.json ng2-activiti-analytics/package.json ng2-activiti-form/package.json ng2-activiti-tasklist/package.json ng2-activiti-processlist/package.json ng2-alfresco-documentlist/package.json ng2-alfresco-login/package.json ng2-alfresco-search/package.json ng2-alfresco-tag/package.json ng2-alfresco-upload/package.json ng2-alfresco-viewer/package.json ng2-alfresco-webscript/package.json ng2-alfresco-webscript/package.json ng2-alfresco-userinfo/package.json ng2-alfresco-social/package.json package-base.json > package.json",
|
"pkg-build": "package-json-merge ng2-alfresco-core/package.json ng2-alfresco-datatable/package.json ng2-activiti-diagrams/package.json ng2-activiti-analytics/package.json ng2-activiti-form/package.json ng2-activiti-tasklist/package.json ng2-activiti-processlist/package.json ng2-alfresco-documentlist/package.json ng2-alfresco-login/package.json ng2-alfresco-search/package.json ng2-alfresco-tag/package.json ng2-alfresco-upload/package.json ng2-alfresco-viewer/package.json ng2-alfresco-webscript/package.json ng2-alfresco-webscript/package.json ng2-alfresco-userinfo/package.json ng2-alfresco-social/package.json package-base.json > package.json",
|
||||||
"tslint": "",
|
"tslint": "",
|
||||||
"tsc": "",
|
"tsc": "",
|
||||||
"webpack": "node --max_old_space_size=2048 node_modules/webpack/bin/webpack.js",
|
|
||||||
"pretest": "",
|
"pretest": "",
|
||||||
"posttest": "",
|
"posttest": "",
|
||||||
"publish:prod": ""
|
"publish:prod": ""
|
||||||
@@ -145,7 +144,8 @@
|
|||||||
"wsrv": "^0.1.7",
|
"wsrv": "^0.1.7",
|
||||||
"node-sass": "^3.13.1",
|
"node-sass": "^3.13.1",
|
||||||
"sass-loader": "6.0.2",
|
"sass-loader": "6.0.2",
|
||||||
"license-check": "1.1.5"
|
"license-check": "1.1.5",
|
||||||
|
"happypack": "3.0.0"
|
||||||
},
|
},
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"module": "./index.js",
|
"module": "./index.js",
|
||||||
|
Reference in New Issue
Block a user