9360aa2d27
The quotes rule had to be disabled for e2e tests generated from ngdoc because dgeni templates use double quotes as string delimiters. Since we can't have guarantees that dgeni template wrappers will follow the same JS code style the Angular 1 repo uses, we should find a way to enforce our ESLint setup only for the parts in this repo, perhaps via prepending a generated `/* eslint-enable OUR_RULES */` pragma. Closes #15011
18 lines
546 B
JavaScript
18 lines
546 B
JavaScript
'use strict';
|
|
var path = require('canonical-path');
|
|
|
|
/**
|
|
* dgService getVersion
|
|
* @description
|
|
* Find the current version of the bower component (or npm module)
|
|
*/
|
|
module.exports = function getVersion(readFilesProcessor) {
|
|
var basePath = readFilesProcessor.basePath;
|
|
|
|
return function(component, sourceFolder, packageFile) {
|
|
sourceFolder = path.resolve(basePath, sourceFolder || 'docs/bower_components');
|
|
packageFile = packageFile || 'bower.json';
|
|
return require(path.join(sourceFolder,component,packageFile)).version;
|
|
};
|
|
};
|