mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[no-issue] downgrade scss bundle and some other minor fix (#2824)
* downgrade scss bundle and some other minor fix * 2.0.9 * remove chrome in travis conf * execute different configuration
This commit is contained in:
11
.travis.yml
11
.travis.yml
@@ -1,15 +1,16 @@
|
|||||||
language: node_js
|
language: node_js
|
||||||
dist: trusty
|
dist: trusty
|
||||||
sudo: false
|
sudo: required
|
||||||
node_js:
|
node_js:
|
||||||
- "8"
|
- "8"
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
chrome: stable
|
chrome: stable
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- "export DISPLAY=:99.0"
|
- export CHROME_BIN=chromium-browser
|
||||||
- "sh -e /etc/init.d/xvfb start"
|
- export DISPLAY=:99.0
|
||||||
|
- sh -e /etc/init.d/xvfb start
|
||||||
|
|
||||||
env:
|
env:
|
||||||
matrix:
|
matrix:
|
||||||
@@ -31,7 +32,7 @@ install:
|
|||||||
|
|
||||||
script:
|
script:
|
||||||
- if ([ "$MODULE" == "core" ]); then
|
- if ([ "$MODULE" == "core" ]); then
|
||||||
(./scripts/npm-build-all.sh -si -sb -t "core*" || exit 1;);
|
(./scripts/npm-build-all.sh -si -sb -t "core" || exit 1;);
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- if ([ "$MODULE" == "process-services" ]); then
|
- if ([ "$MODULE" == "process-services" ]); then
|
||||||
|
@@ -69,25 +69,11 @@ module.exports = function (config) {
|
|||||||
|
|
||||||
autoWatch: false,
|
autoWatch: false,
|
||||||
|
|
||||||
captureTimeout: 4800000,
|
browserDisconnectTimeout: 200000,
|
||||||
browserDisconnectTimeout: 4800000,
|
browserNoActivityTimeout: 2400000,
|
||||||
browserDisconnectTolerance: 10,
|
captureTimeout: 1200000,
|
||||||
browserNoActivityTimeout: 3000000,
|
|
||||||
|
|
||||||
browsers: ['Chrome'],
|
browsers: ['Chrome'],
|
||||||
|
|
||||||
customLaunchers: {
|
|
||||||
ChromeHeadless: {
|
|
||||||
base: 'Chrome',
|
|
||||||
flags: [
|
|
||||||
'--no-sandbox',
|
|
||||||
'--headless',
|
|
||||||
'--disable-gpu',
|
|
||||||
'--remote-debugging-port=9222'
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// Karma plugins loaded
|
// Karma plugins loaded
|
||||||
plugins: [
|
plugins: [
|
||||||
require('../node_modules/karma-jasmine'),
|
require('../node_modules/karma-jasmine'),
|
||||||
@@ -126,10 +112,5 @@ module.exports = function (config) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
if (process.env.TRAVIS) {
|
|
||||||
config.browsers = ['ChromeHeadless'];
|
|
||||||
config.reporters = ['dots', 'coverage'];
|
|
||||||
}
|
|
||||||
|
|
||||||
config.set(_config);
|
config.set(_config);
|
||||||
};
|
};
|
||||||
|
@@ -133,35 +133,35 @@ export class ContentService {
|
|||||||
/**
|
/**
|
||||||
* Get thumbnail URL for the given document node.
|
* Get thumbnail URL for the given document node.
|
||||||
*
|
*
|
||||||
* @param {string|MinimalNodeEntity} nodeId Node to get URL for.
|
* @param {string|MinimalNodeEntity} nodeId or node to get URL for.
|
||||||
* @param {boolean} [attachment] Retrieve content as an attachment for download
|
* @param {boolean} [attachment] Retrieve content as an attachment for download
|
||||||
* @param {string} [ticket] Custom ticket to use for authentication
|
* @param {string} [ticket] Custom ticket to use for authentication
|
||||||
* @returns {string} The URL address pointing to the content.
|
* @returns {string} The URL address pointing to the content.
|
||||||
*/
|
*/
|
||||||
getDocumentThumbnailUrl(nodeId: any, attachment?: boolean, ticket?: string): string {
|
getDocumentThumbnailUrl(node: any, attachment?: boolean, ticket?: string): string {
|
||||||
|
|
||||||
if (nodeId && nodeId.entry) {
|
if (node && node.entry) {
|
||||||
nodeId = nodeId.entry.id;
|
node = node.entry.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.contentApi.getDocumentThumbnailUrl(nodeId, attachment, ticket);
|
return this.contentApi.getDocumentThumbnailUrl(node, attachment, ticket);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get content URL for the given node.
|
* Get content URL for the given node.
|
||||||
*
|
*
|
||||||
* @param nodeId {string|MinimalNodeEntity} Node to get URL for.
|
* @param node {string|MinimalNodeEntity} nodeId or node to get URL for.
|
||||||
* @param {boolean} [attachment] Retrieve content as an attachment for download
|
* @param {boolean} [attachment] Retrieve content as an attachment for download
|
||||||
* @param {string} [ticket] Custom ticket to use for authentication
|
* @param {string} [ticket] Custom ticket to use for authentication
|
||||||
* @returns {string} The URL address pointing to the content.
|
* @returns {string} The URL address pointing to the content.
|
||||||
*/
|
*/
|
||||||
getContentUrl(nodeId: any, attachment?: boolean, ticket?: string): string {
|
getContentUrl(node: any, attachment?: boolean, ticket?: string): string {
|
||||||
|
|
||||||
if (nodeId && nodeId.entry) {
|
if (node && node.entry) {
|
||||||
nodeId = nodeId.entry.id;
|
node = node.entry.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.contentApi.getContentUrl(nodeId, attachment, ticket);
|
return this.contentApi.getContentUrl(node, attachment, ticket);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -125,8 +125,8 @@ export class ThumbnailService {
|
|||||||
* @param document Node to get URL for.
|
* @param document Node to get URL for.
|
||||||
* @returns {string} URL address.
|
* @returns {string} URL address.
|
||||||
*/
|
*/
|
||||||
public getDocumentThumbnailUrl(document: any): string {
|
public getDocumentThumbnailUrl(node: any): string {
|
||||||
let thumbnail = this.contentService.getDocumentThumbnailUrl(document);
|
let thumbnail = this.contentService.getDocumentThumbnailUrl(node);
|
||||||
return thumbnail || this.DEFAULT_ICON;
|
return thumbnail || this.DEFAULT_ICON;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -115,7 +115,7 @@
|
|||||||
"karma-remap-istanbul": "0.6.0",
|
"karma-remap-istanbul": "0.6.0",
|
||||||
"karma-sourcemap-loader": "0.3.7",
|
"karma-sourcemap-loader": "0.3.7",
|
||||||
"karma-systemjs": "0.16.0",
|
"karma-systemjs": "0.16.0",
|
||||||
"karma-webpack": "2.0.5",
|
"karma-webpack": "2.0.9",
|
||||||
"loader-utils": "1.1.0",
|
"loader-utils": "1.1.0",
|
||||||
"markdown-toc": "1.1.0",
|
"markdown-toc": "1.1.0",
|
||||||
"markdownlint-cli": "^0.3.1",
|
"markdownlint-cli": "^0.3.1",
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
"run-sequence": "1.2.2",
|
"run-sequence": "1.2.2",
|
||||||
"sass-loader": "6.0.5",
|
"sass-loader": "6.0.5",
|
||||||
"script-loader": "0.7.0",
|
"script-loader": "0.7.0",
|
||||||
"scss-bundle": "^2.1.0",
|
"scss-bundle": "2.1.0",
|
||||||
"source-map-loader": "0.1.6",
|
"source-map-loader": "0.1.6",
|
||||||
"style-loader": "0.13.1",
|
"style-loader": "0.13.1",
|
||||||
"systemjs-builder": "0.15.34",
|
"systemjs-builder": "0.15.34",
|
||||||
|
Reference in New Issue
Block a user