Built distribution
This commit is contained in:
@@ -79,15 +79,15 @@ module.exports.noGlobals = function() {
|
||||
return jasmineInterface;
|
||||
};
|
||||
|
||||
const path = require('path'),
|
||||
fs = require('fs');
|
||||
const path = require('path');
|
||||
const fs = require('fs');
|
||||
|
||||
const rootPath = path.join(__dirname, 'jasmine-core'),
|
||||
bootFiles = ['boot0.js', 'boot1.js'],
|
||||
legacyBootFiles = ['boot.js'],
|
||||
cssFiles = [],
|
||||
jsFiles = [],
|
||||
jsFilesToSkip = ['jasmine.js'].concat(bootFiles, legacyBootFiles);
|
||||
const rootPath = path.join(__dirname, 'jasmine-core');
|
||||
const bootFiles = ['boot0.js', 'boot1.js'];
|
||||
const legacyBootFiles = ['boot.js'];
|
||||
const cssFiles = [];
|
||||
const jsFiles = [];
|
||||
const jsFilesToSkip = ['jasmine.js'].concat(bootFiles, legacyBootFiles);
|
||||
|
||||
fs.readdirSync(rootPath).forEach(function(file) {
|
||||
if (fs.statSync(path.join(rootPath, file)).isFile()) {
|
||||
|
||||
Reference in New Issue
Block a user