From d68ffc6f6f5e0a37100fc240aa87562972487fa7 Mon Sep 17 00:00:00 2001 From: Supasate Choochaisri Date: Wed, 8 Mar 2017 16:29:59 +0700 Subject: [PATCH 1/4] Provide scriptExtensions option --- lib/bootstrapper.js | 10 +++++- lib/plugin-loader.js | 10 +++--- lib/plugins/boot-script.js | 8 +++-- lib/plugins/middleware.js | 1 + lib/plugins/mixin.js | 36 +++++++++---------- lib/plugins/model.js | 28 +++++++++------ lib/utils.js | 34 ++++++++++-------- test/bootstrapper.test.js | 24 +++++++++++++ test/fixtures/simple-app/boot/custom.customjs | 6 ++++ .../fixtures/simple-app/boot/custom.customjs2 | 6 ++++ 10 files changed, 113 insertions(+), 50 deletions(-) create mode 100644 test/fixtures/simple-app/boot/custom.customjs create mode 100644 test/fixtures/simple-app/boot/custom.customjs2 diff --git a/lib/bootstrapper.js b/lib/bootstrapper.js index 600fafc..5cc421d 100644 --- a/lib/bootstrapper.js +++ b/lib/bootstrapper.js @@ -3,6 +3,7 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +var _ = require('lodash'); var assert = require('assert'); var async = require('async'); var utils = require('./utils'); @@ -10,6 +11,7 @@ var path = require('path'); var pluginLoader = require('./plugin-loader'); var debug = require('debug')('loopback:boot:bootstrapper'); var Promise = require('bluebird'); +var arrayToObject = require('./utils').arrayToObject; module.exports = Bootstrapper; @@ -58,13 +60,20 @@ function Bootstrapper(options) { options = { appRootDir: options }; } + // For setting properties without modifying the original object + options = Object.create(options); + var appRootDir = options.appRootDir = options.appRootDir || process.cwd(); var env = options.env || process.env.NODE_ENV || 'development'; + var scriptExtensions = options.scriptExtensions ? + arrayToObject(options.scriptExtensions) : + require.extensions; var appConfigRootDir = options.appConfigRootDir || appRootDir; options.rootDir = appConfigRootDir; options.env = env; + options.scriptExtensions = scriptExtensions; this.options = options; this.phases = options.phases || builtinPhases; @@ -200,4 +209,3 @@ Bootstrapper.prototype.run = function(context, done) { }); return done.promise; }; - diff --git a/lib/plugin-loader.js b/lib/plugin-loader.js index 3f11159..58434d2 100644 --- a/lib/plugin-loader.js +++ b/lib/plugin-loader.js @@ -33,9 +33,13 @@ PluginScript.prototype.load = function(context) { utils.resolveRelativePaths(pluginScripts, appRootDir); pluginDirs.forEach(function(dir) { - pluginScripts = pluginScripts.concat(utils.findScripts(dir)); + pluginScripts = pluginScripts.concat( + utils.findScripts(dir, options.scriptExtensions) + ); var envdir = dir + '/' + options.env; - pluginScripts = pluginScripts.concat(utils.findScripts(envdir)); + pluginScripts = pluginScripts.concat( + utils.findScripts(envdir, options.scriptExtensions) + ); }); pluginScripts = _.uniq(pluginScripts); @@ -58,5 +62,3 @@ PluginScript.prototype.compile = function(context) { plugins[name] = handler; }); }; - - diff --git a/lib/plugins/boot-script.js b/lib/plugins/boot-script.js index 17be856..56d0364 100644 --- a/lib/plugins/boot-script.js +++ b/lib/plugins/boot-script.js @@ -34,9 +34,13 @@ Script.prototype.load = function(context) { utils.resolveRelativePaths(bootScripts, appRootDir); bootDirs.forEach(function(dir) { - bootScripts = bootScripts.concat(utils.findScripts(dir)); + bootScripts = bootScripts.concat( + utils.findScripts(dir, options.scriptExtensions) + ); var envdir = dir + '/' + options.env; - bootScripts = bootScripts.concat(utils.findScripts(envdir)); + bootScripts = bootScripts.concat( + utils.findScripts(envdir, options.scriptExtensions) + ); }); // de-dedup boot scripts -ERS diff --git a/lib/plugins/middleware.js b/lib/plugins/middleware.js index 61eddfb..d2a29e8 100644 --- a/lib/plugins/middleware.js +++ b/lib/plugins/middleware.js @@ -83,6 +83,7 @@ Middleware.prototype.mergePhaseConfig = function(target, config, phase) { Middleware.prototype.buildInstructions = function(context, rootDir, config) { var phasesNames = Object.keys(config); var middlewareList = []; + phasesNames.forEach(function(phase) { var phaseConfig = config[phase]; Object.keys(phaseConfig).forEach(function(middleware) { diff --git a/lib/plugins/mixin.js b/lib/plugins/mixin.js index 24081f4..89fdff1 100644 --- a/lib/plugins/mixin.js +++ b/lib/plugins/mixin.js @@ -30,38 +30,39 @@ util.inherits(Mixin, PluginBase); Mixin.prototype.buildInstructions = function(context, rootDir, config) { var modelsMeta = context.configurations.mixins._meta || {}; var modelInstructions = context.instructions.models; - var mixinDirs = this.options.mixinDirs || []; var mixinSources = this.options.mixinSources || modelsMeta.mixins || ['./mixins']; + var scriptExtensions = this.options.scriptExtensions || require.extensions; var mixinInstructions = buildAllMixinInstructions( - rootDir, mixinDirs, mixinSources, this.options, modelInstructions); + rootDir, this.options, mixinSources, scriptExtensions, modelInstructions); return mixinInstructions; }; -function buildAllMixinInstructions(appRootDir, mixinDirs, mixinSources, options, - modelInstructions) { - var extensions = _.without(_.keys(require.extensions), - _.keys(getExcludedExtensions())); - +function buildAllMixinInstructions(appRootDir, options, mixinSources, + scriptExtensions, modelInstructions) { // load mixins from `options.mixins` var sourceFiles = options.mixins || []; - var instructionsFromMixins = loadMixins(sourceFiles, options); + var mixinDirs = options.mixinDirs || []; + var instructionsFromMixins = loadMixins(sourceFiles, options.normalization); // load mixins from `options.mixinDirs` - sourceFiles = findMixinDefinitions(appRootDir, mixinDirs, extensions); + sourceFiles = findMixinDefinitions(appRootDir, mixinDirs, scriptExtensions); if (sourceFiles === undefined) return; - var instructionsFromMixinDirs = loadMixins(sourceFiles, options); + var instructionsFromMixinDirs = loadMixins(sourceFiles, + options.normalization); /* If `mixinDirs` and `mixinSources` have any directories in common, * then remove the common directories from `mixinSources` */ mixinSources = _.difference(mixinSources, mixinDirs); // load mixins from `options.mixinSources` - sourceFiles = findMixinDefinitions(appRootDir, mixinSources, extensions); + sourceFiles = findMixinDefinitions(appRootDir, mixinSources, + scriptExtensions); if (sourceFiles === undefined) return; - var instructionsFromMixinSources = loadMixins(sourceFiles, options); + var instructionsFromMixinSources = loadMixins(sourceFiles, + options.normalization); // Fetch unique list of mixin names, used in models var modelMixins = fetchMixinNamesUsedInModelInstructions(modelInstructions); @@ -79,7 +80,7 @@ function buildAllMixinInstructions(appRootDir, mixinDirs, mixinSources, options, return _.values(mixins); } -function findMixinDefinitions(appRootDir, sourceDirs, extensions) { +function findMixinDefinitions(appRootDir, sourceDirs, scriptExtensions) { var files = []; sourceDirs.forEach(function(dir) { var path = tryResolveAppPath(appRootDir, dir); @@ -87,12 +88,12 @@ function findMixinDefinitions(appRootDir, sourceDirs, extensions) { debug('Skipping unknown module source dir %j', dir); return; } - files = files.concat(findScripts(path, extensions)); + files = files.concat(findScripts(path, scriptExtensions)); }); return files; } -function loadMixins(sourceFiles, options) { +function loadMixins(sourceFiles, normalization) { var mixinInstructions = {}; sourceFiles.forEach(function(filepath) { var dir = path.dirname(filepath); @@ -100,7 +101,7 @@ function loadMixins(sourceFiles, options) { var name = path.basename(filepath, ext); var metafile = path.join(dir, name + FILE_EXTENSION_JSON); - name = normalizeMixinName(name, options); + name = normalizeMixinName(name, normalization); var meta = {}; meta.name = name; if (utils.fileExistsSync(metafile)) { @@ -135,8 +136,7 @@ function filterMixinInstructionsUsingWhitelist(instructions, includeMixins) { return filteredInstructions; } -function normalizeMixinName(str, options) { - var normalization = options.normalization; +function normalizeMixinName(str, normalization) { switch (normalization) { case false: case 'none': diff --git a/lib/plugins/model.js b/lib/plugins/model.js index 027818b..6318b7d 100644 --- a/lib/plugins/model.js +++ b/lib/plugins/model.js @@ -46,14 +46,18 @@ Model.prototype.buildInstructions = function(context, rootDir, modelsConfig) { var modelSources = this.options.modelSources || modelsMeta.sources || ['./models']; var modelInstructions = buildAllModelInstructions( - rootDir, modelsConfig, modelSources, this.options.modelDefinitions); + rootDir, modelsConfig, modelSources, this.options.modelDefinitions, + this.options.scriptExtensions); return modelInstructions; }; function buildAllModelInstructions(rootDir, modelsConfig, sources, - modelDefinitions) { - var registry = verifyModelDefinitions(rootDir, modelDefinitions) || - findModelDefinitions(rootDir, sources); + modelDefinitions, scriptExtensions) { + var registry = verifyModelDefinitions(rootDir, modelDefinitions, + scriptExtensions); + if (!registry) { + registry = findModelDefinitions(rootDir, sources, scriptExtensions); + } var modelNamesToBuild = addAllBaseModels(registry, Object.keys(modelsConfig)); @@ -134,7 +138,7 @@ function sortByInheritance(instructions) { }); } -function verifyModelDefinitions(rootDir, modelDefinitions) { +function verifyModelDefinitions(rootDir, modelDefinitions, scriptExtensions) { if (!modelDefinitions || modelDefinitions.length < 1) { return undefined; } @@ -146,7 +150,8 @@ function verifyModelDefinitions(rootDir, modelDefinitions) { definition.sourceFile = fixFileExtension( fullPath, tryReadDir(path.dirname(fullPath)), - true); + scriptExtensions); + if (!definition.sourceFile) { debug('Model source code not found: %s - %s', definition.sourceFile); } @@ -172,7 +177,7 @@ function verifyModelDefinitions(rootDir, modelDefinitions) { return registry; } -function findModelDefinitions(rootDir, sources) { +function findModelDefinitions(rootDir, sources, scriptExtensions) { var registry = {}; sources.forEach(function(src) { @@ -190,7 +195,8 @@ function findModelDefinitions(rootDir, sources) { }) .forEach(function(f) { var fullPath = path.resolve(srcDir, f); - var entry = loadModelDefinition(rootDir, fullPath, files); + var entry = loadModelDefinition(rootDir, fullPath, files, + scriptExtensions); var modelName = entry.definition.name; if (!modelName) { debug('Skipping model definition without Model name: %s', @@ -204,13 +210,14 @@ function findModelDefinitions(rootDir, sources) { return registry; } -function loadModelDefinition(rootDir, jsonFile, allFiles) { +function loadModelDefinition(rootDir, jsonFile, allFiles, scriptExtensions) { var definition = require(jsonFile); var basename = path.basename(jsonFile, path.extname(jsonFile)); definition.name = definition.name || _.upperFirst(_.camelCase(basename)); // find a matching file with a supported extension like `.js` or `.coffee` - var sourceFile = fixFileExtension(jsonFile, allFiles, true); + var sourceFile = fixFileExtension(jsonFile, allFiles, scriptExtensions); + if (sourceFile === undefined) { debug('Model source code not found: %s', sourceFile); } @@ -301,4 +308,3 @@ Model.prototype.start = function(context) { app.model(data._model, data.config); }); }; - diff --git a/lib/utils.js b/lib/utils.js index 5d1ce74..41681e8 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -11,6 +11,7 @@ var assert = require('assert'); var _ = require('lodash'); var g = require('./globalize'); +exports.arrayToObject = arrayToObject; exports.tryReadDir = tryReadDir; exports.resolveRelativePaths = resolveRelativePaths; exports.assertIsValidConfig = assertIsValidConfig; @@ -31,11 +32,11 @@ var FILE_EXTENSION_JSON = exports.FILE_EXTENSION_JSON = '.json'; * @return {Array.} A list of absolute paths to pass to `require()`. */ -function findScripts(dir, extensions) { +function findScripts(dir, scriptExtensions) { assert(dir, 'cannot require directory contents without directory name'); var files = tryReadDir(dir); - extensions = extensions || _.keys(require.extensions); + scriptExtensions = scriptExtensions || require.extensions; // sort files in lowercase alpha for linux files.sort(function(a, b) { @@ -61,9 +62,9 @@ function findScripts(dir, extensions) { var filepath = path.resolve(path.join(dir, filename)); var stats = fs.statSync(filepath); - // only require files supported by require.extensions (.txt .md etc.) + // only require files supported by specified extensions if (stats.isFile()) { - if (isPreferredExtension(filename)) + if (scriptExtensions && isPreferredExtension(filename, scriptExtensions)) results.push(filepath); else debug('Skipping file %s - unknown extension', filepath); @@ -102,19 +103,28 @@ function getExcludedExtensions() { }; } -function isPreferredExtension(filename) { - var includeExtensions = require.extensions; +function arrayToObject(array) { + return array.reduce(function(obj, val) { + obj[val] = val; + return obj; + }, {}); +} + +function isPreferredExtension(filename, includeExtensions) { + assert(!!includeExtensions, '"includeExtensions" argument is required'); var ext = path.extname(filename); return (ext in includeExtensions) && !(ext in getExcludedExtensions()); } -function fixFileExtension(filepath, files, onlyScriptsExportingFunction) { +function fixFileExtension(filepath, files, scriptExtensions) { var results = []; var otherFile; /* Prefer coffee scripts over json */ - if (isPreferredExtension(filepath)) return filepath; + if (scriptExtensions && isPreferredExtension(filepath, scriptExtensions)) { + return filepath; + } var basename = path.basename(filepath, FILE_EXTENSION_JSON); var sourceDir = path.dirname(filepath); @@ -128,10 +138,7 @@ function fixFileExtension(filepath, files, onlyScriptsExportingFunction) { if (!(otherFileExtension in getExcludedExtensions()) && path.basename(f, otherFileExtension) == basename) { - if (!onlyScriptsExportingFunction) - results.push(otherFile); - else if (onlyScriptsExportingFunction && - (typeof require.extensions[otherFileExtension]) === 'function') { + if (!scriptExtensions || otherFileExtension in scriptExtensions) { results.push(otherFile); } } @@ -157,7 +164,7 @@ function resolveAppScriptPath(rootDir, relativePath, resolveOptions) { } var sourceDir = path.dirname(resolvedPath); var files = tryReadDir(sourceDir); - var fixedFile = fixFileExtension(resolvedPath, files, false); + var fixedFile = fixFileExtension(resolvedPath, files); return (fixedFile === undefined ? resolvedPath : fixedFile); } @@ -347,4 +354,3 @@ function fileExistsSync(filepath) { return false; } } - diff --git a/test/bootstrapper.test.js b/test/bootstrapper.test.js index 68fac8e..3a79e8a 100644 --- a/test/bootstrapper.test.js +++ b/test/bootstrapper.test.js @@ -77,6 +77,30 @@ describe('Bootstrapper', function() { }); }); + it('searches boot file extensions specified in options.scriptExtensions', + function(done) { + var options = { + app: app, + appRootDir: path.join(__dirname, './fixtures/simple-app'), + scriptExtensions: ['.customjs', '.customjs2'], + }; + + var bootstrapper = new Bootstrapper(options); + + var context = { + app: app, + }; + + bootstrapper.run(context, function(err) { + if (err) return done(err); + expect(process.bootFlags, 'process: bootFlags').to.eql([ + 'customjs', + 'customjs2', + ]); + done(); + }); + }); + afterEach(function() { delete process.bootFlags; }); diff --git a/test/fixtures/simple-app/boot/custom.customjs b/test/fixtures/simple-app/boot/custom.customjs new file mode 100644 index 0000000..8fde947 --- /dev/null +++ b/test/fixtures/simple-app/boot/custom.customjs @@ -0,0 +1,6 @@ +'use strict'; + +module.exports = function(app, callback) { + process.bootFlags.push('customjs'); + callback(); +}; diff --git a/test/fixtures/simple-app/boot/custom.customjs2 b/test/fixtures/simple-app/boot/custom.customjs2 new file mode 100644 index 0000000..14a5de2 --- /dev/null +++ b/test/fixtures/simple-app/boot/custom.customjs2 @@ -0,0 +1,6 @@ +'use strict'; + +module.exports = function(app, callback) { + process.bootFlags.push('customjs2'); + callback(); +}; From 3bb519d5e9b586b87b92c154ff1c705bff412915 Mon Sep 17 00:00:00 2001 From: Raymond Feng Date: Mon, 8 May 2017 14:48:48 -0700 Subject: [PATCH 2/4] Upgrade deps and fix style issues --- browser.js | 2 + index.js | 10 +- lib/bootstrapper.js | 4 +- lib/bundler.js | 8 +- lib/globalize.js | 2 +- lib/plugin-base.js | 2 + lib/plugin-loader.js | 2 + lib/plugins/application.js | 2 + lib/plugins/boot-script.js | 2 + lib/plugins/component.js | 6 +- lib/plugins/datasource.js | 4 +- lib/plugins/middleware.js | 4 +- lib/plugins/mixin.js | 2 + lib/plugins/model.js | 4 +- lib/plugins/swagger.js | 2 + lib/utils.js | 14 +- package.json | 12 +- test/bootstrapper.test.js | 2 + test/browser.multiapp.test.js | 4 +- test/browser.test.js | 8 +- test/compiler.test.js | 152 +++++++++--------- test/executor.test.js | 129 ++++++++------- test/fixtures/browser-app-2/app.js | 2 + test/fixtures/browser-app-2/models/robot.js | 2 + test/fixtures/browser-app/app.js | 2 + test/fixtures/browser-app/boot/configure.js | 2 + .../browser-app/components/dummy-component.js | 2 + .../browser-app/mixins/time-stamps.js | 2 + test/fixtures/browser-app/models/customer.js | 2 + test/fixtures/env-app/boot/test/bar.js | 2 + test/fixtures/passport.js | 2 + test/fixtures/simple-app/boot/bar.js | 2 + test/fixtures/simple-app/boot/barSync.js | 2 + test/fixtures/simple-app/boot/booting.js | 2 + test/fixtures/simple-app/boot/foo.js | 2 + test/fixtures/simple-app/middleware/index.js | 2 + .../node_modules/my-module/index.js | 2 + test/fixtures/simple-app/plugins/tracker.js | 2 + test/fixtures/simple-component.js | 2 + test/fixtures/simple-middleware.js | 2 + test/helpers/appdir.js | 8 +- test/helpers/browser.js | 6 +- test/helpers/browserify.js | 2 + test/helpers/push-name-middleware.js | 2 + test/helpers/sandbox.js | 2 + test/utils.test.js | 2 + 46 files changed, 265 insertions(+), 170 deletions(-) diff --git a/browser.js b/browser.js index 7053a42..9bba28a 100644 --- a/browser.js +++ b/browser.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var Bootstrapper = require('./lib/bootstrapper'); /** diff --git a/index.js b/index.js index 6c63d7e..314fd5a 100644 --- a/index.js +++ b/index.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + // Strong globalize var g = require('./lib/globalize'); @@ -144,6 +146,10 @@ var addInstructionsToBrowserify = require('./lib/bundler'); */ exports = module.exports = function bootLoopBackApp(app, options, callback) { + if (typeof options === 'string') { + // The 2nd arg is appRootDir + options = {appRootDir: options}; + } if (typeof options === 'function' && callback === undefined) { callback = options; options = {}; @@ -182,7 +188,7 @@ exports.compile = function(options, done) { exports.compileToBrowserify = function(options, bundler, done) { return exports.compile(options, function(err, context) { if (err) return done(err); - addInstructionsToBrowserify({ instructions: context.instructions }, + addInstructionsToBrowserify({instructions: context.instructions}, bundler); done(); }); @@ -194,7 +200,7 @@ exports.PluginBase = PluginBase; exports.execute = function(app, instructions, done) { var bootstrapper = new Bootstrapper( - { phases: ['starting', 'start', 'started'] }); + {phases: ['starting', 'start', 'started']}); var context = { app: app, instructions: instructions, diff --git a/lib/bootstrapper.js b/lib/bootstrapper.js index 5cc421d..4aaef57 100644 --- a/lib/bootstrapper.js +++ b/lib/bootstrapper.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var _ = require('lodash'); var assert = require('assert'); var async = require('async'); @@ -57,7 +59,7 @@ function Bootstrapper(options) { options = options || {}; if (typeof options === 'string') { - options = { appRootDir: options }; + options = {appRootDir: options}; } // For setting properties without modifying the original object diff --git a/lib/bundler.js b/lib/bundler.js index fa15860..f9fc62a 100644 --- a/lib/bundler.js +++ b/lib/bundler.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var fs = require('fs'); var path = require('path'); var commondir = require('commondir'); @@ -29,7 +31,7 @@ function addPlugins(bundler) { var files = fs.readdirSync(dir); files.forEach(function(f) { bundler.require(path.join(dir, f), - { expose: './plugins/' + path.basename(f, '.js') }); + {expose: './plugins/' + path.basename(f, '.js')}); }); } @@ -86,7 +88,7 @@ function addScriptsToBundle(name, list, bundler) { var fileid = 'loopback-boot#' + name + '#' + path.relative(root, filepath); // Add the file to the bundle. - bundler.require(filepath, { expose: fileid }); + bundler.require(filepath, {expose: fileid}); // Rewrite the context entry with the new id that will be // used to load the file via `require(fileid)`. @@ -130,5 +132,5 @@ function bundleInstructions(context, bundler) { fs.writeFileSync(instructionsFile, instructionsString, 'utf-8'); var moduleName = 'loopback-boot#' + instructionId; - bundler.require(instructionsFile, { expose: moduleName }); + bundler.require(instructionsFile, {expose: moduleName}); } diff --git a/lib/globalize.js b/lib/globalize.js index 030d089..5589bdc 100644 --- a/lib/globalize.js +++ b/lib/globalize.js @@ -7,5 +7,5 @@ var path = require('path'); var SG = require('strong-globalize'); -SG.SetRootDir(path.join(__dirname, '..'), { autonomousMsgLoading: 'all' }); +SG.SetRootDir(path.join(__dirname, '..'), {autonomousMsgLoading: 'all'}); module.exports = SG(); diff --git a/lib/plugin-base.js b/lib/plugin-base.js index 2505d83..d4d4af0 100644 --- a/lib/plugin-base.js +++ b/lib/plugin-base.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var fs = require('fs'); var path = require('path'); var debug = require('debug')('loopback:boot:plugin'); diff --git a/lib/plugin-loader.js b/lib/plugin-loader.js index 58434d2..76747fb 100644 --- a/lib/plugin-loader.js +++ b/lib/plugin-loader.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var util = require('util'); var utils = require('./utils'); var path = require('path'); diff --git a/lib/plugins/application.js b/lib/plugins/application.js index a8c487f..448c7e9 100644 --- a/lib/plugins/application.js +++ b/lib/plugins/application.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var util = require('util'); var assert = require('assert'); var semver = require('semver'); diff --git a/lib/plugins/boot-script.js b/lib/plugins/boot-script.js index 56d0364..e5d0e3c 100644 --- a/lib/plugins/boot-script.js +++ b/lib/plugins/boot-script.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var util = require('util'); var utils = require('../utils'); var path = require('path'); diff --git a/lib/plugins/component.js b/lib/plugins/component.js index 47e3ed7..fd83378 100644 --- a/lib/plugins/component.js +++ b/lib/plugins/component.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var util = require('util'); var debug = require('debug')('loopback:boot:component'); var PluginBase = require('../plugin-base'); @@ -31,7 +33,7 @@ Component.prototype.buildInstructions = function(context, rootDir, config) { return !!config[name]; }).map(function(name) { return { - sourceFile: resolveAppScriptPath(rootDir, name, { strict: true }), + sourceFile: resolveAppScriptPath(rootDir, name, {strict: true}), config: config[name], }; }); @@ -44,7 +46,7 @@ Component.prototype.start = function(context) { debug('Configuring component %j', data.sourceFile); var configFn = require(data.sourceFile); data.config = self.getUpdatedConfigObject(context, data.config, - { useEnvVars: true }); + {useEnvVars: true}); configFn(app, data.config); }); }; diff --git a/lib/plugins/datasource.js b/lib/plugins/datasource.js index f99a6dc..d22f730 100644 --- a/lib/plugins/datasource.js +++ b/lib/plugins/datasource.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var util = require('util'); var utils = require('../utils'); var PluginBase = require('../plugin-base'); @@ -27,7 +29,7 @@ DataSource.prototype.start = function(context) { var self = this; var lazyConnect = process.env.LB_LAZYCONNECT_DATASOURCES; utils.forEachKeyedObject(context.instructions[this.name], function(key, obj) { - obj = self.getUpdatedConfigObject(context, obj, { useEnvVars: true }); + obj = self.getUpdatedConfigObject(context, obj, {useEnvVars: true}); debug('Registering data source %s %j', key, obj); if (lazyConnect) { obj.lazyConnect = diff --git a/lib/plugins/middleware.js b/lib/plugins/middleware.js index d2a29e8..7bf1323 100644 --- a/lib/plugins/middleware.js +++ b/lib/plugins/middleware.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var util = require('util'); var assert = require('assert'); var path = require('path'); @@ -258,7 +260,7 @@ Middleware.prototype.start = function(context) { assert(typeof factory === 'function', 'Middleware factory must be a function'); data.config = self.getUpdatedConfigObject(context, data.config, - { useEnvVars: true }); + {useEnvVars: true}); app.middlewareFromConfig(factory, data.config); }); }; diff --git a/lib/plugins/mixin.js b/lib/plugins/mixin.js index 89fdff1..81de543 100644 --- a/lib/plugins/mixin.js +++ b/lib/plugins/mixin.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var util = require('util'); var fs = require('fs'); var path = require('path'); diff --git a/lib/plugins/model.js b/lib/plugins/model.js index 6318b7d..de1fb5c 100644 --- a/lib/plugins/model.js +++ b/lib/plugins/model.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var assert = require('assert'); var util = require('util'); var PluginBase = require('../plugin-base'); @@ -181,7 +183,7 @@ function findModelDefinitions(rootDir, sources, scriptExtensions) { var registry = {}; sources.forEach(function(src) { - var srcDir = tryResolveAppPath(rootDir, src, { strict: false }); + var srcDir = tryResolveAppPath(rootDir, src, {strict: false}); if (!srcDir) { debug('Skipping unknown module source dir %j', src); return; diff --git a/lib/plugins/swagger.js b/lib/plugins/swagger.js index 24770d0..f5e9106 100644 --- a/lib/plugins/swagger.js +++ b/lib/plugins/swagger.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var util = require('util'); var PluginBase = require('../plugin-base'); diff --git a/lib/utils.js b/lib/utils.js index 41681e8..0035183 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var debug = require('debug')('loopback:boot'); var path = require('path'); var Module = require('module'); @@ -85,13 +87,13 @@ function tryReadDir() { } function resolveRelativePaths(relativePaths, appRootDir) { - var resolveOpts = { strict: false }; + var resolveOpts = {strict: false}; relativePaths.forEach(function(relativePath, k) { var resolvedPath = tryResolveAppPath(appRootDir, relativePath, resolveOpts); if (resolvedPath !== undefined) { relativePaths[k] = resolvedPath; } else { - debug ('skipping boot script %s - unknown file', relativePath); + debug('skipping boot script %s - unknown file', relativePath); } }); } @@ -179,7 +181,7 @@ function tryResolveAppPath(rootDir, relativePath, resolveOptions) { * - `resolveOptions.strict = false` attempts to resolve the value * as a relative path first before searching `node_modules` */ - resolveOptions = resolveOptions || { strict: true }; + resolveOptions = resolveOptions || {strict: true}; var isModuleRelative = false; if (relativePath[0] === '/') { @@ -202,7 +204,7 @@ function tryResolveAppPath(rootDir, relativePath, resolveOptions) { return fullPath; } catch (err) { if (!isModuleRelative) { - debug ('Skipping %s - %s', fullPath, err); + debug('Skipping %s - %s', fullPath, err); return undefined; } } @@ -223,7 +225,7 @@ function tryResolveAppPath(rootDir, relativePath, resolveOptions) { try { // NOTE(bajtos) We need to create a proper String object here, // otherwise we can't attach additional properties to it - /*jshint -W053 */ + /* jshint -W053 */ var filePath = new String(require.resolve(absPath)); filePath.unresolvedPath = absPath; return filePath; @@ -243,7 +245,7 @@ function tryResolveAppPath(rootDir, relativePath, resolveOptions) { return fullPath.toString(); } - debug ('Skipping %s - module not found', fullPath); + debug('Skipping %s - module not found', fullPath); return undefined; } diff --git a/package.json b/package.json index ad78a88..9eac77e 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ }, "license": "MIT", "dependencies": { - "async": "^1.5.2", + "async": "^2.4.0", "bluebird": "^3.4.0", "commondir": "^1.0.1", "debug": "^2.2.0", @@ -42,11 +42,11 @@ "coffee-script": "^1.10.0", "coffeeify": "^2.0.1", "dirty-chai": "^1.2.2", - "eslint": "^2.11.1", - "eslint-config-loopback": "^1.0.0", - "fs-extra": "^0.30.0", + "eslint": "^3.19.0", + "eslint-config-loopback": "^8.0.0", + "fs-extra": "^3.0.1", "loopback": "^3.0.0", - "mocha": "^2.5.3", - "supertest": "^1.2.0" + "mocha": "^3.3.0", + "supertest": "^3.0.0" } } diff --git a/test/bootstrapper.test.js b/test/bootstrapper.test.js index 3a79e8a..165aafa 100644 --- a/test/bootstrapper.test.js +++ b/test/bootstrapper.test.js @@ -1,3 +1,5 @@ +'use strict'; + var path = require('path'); var loopback = require('loopback'); diff --git a/test/browser.multiapp.test.js b/test/browser.multiapp.test.js index e2e6e33..2fb8afa 100644 --- a/test/browser.multiapp.test.js +++ b/test/browser.multiapp.test.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var boot = require('../'); var async = require('async'); var exportBrowserifyToFile = require('./helpers/browserify').exportToSandbox; @@ -74,7 +76,7 @@ function browserifyTestApps(apps, next) { var appId = apps[i].appId; appFile = path.join(appDir, appFile); - b.require(appFile, { expose: moduleName }); + b.require(appFile, {expose: moduleName}); var opts = appDir; if (appId) { diff --git a/test/browser.test.js b/test/browser.test.js index 98db56e..8a6ee81 100644 --- a/test/browser.test.js +++ b/test/browser.test.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var boot = require('../'); var exportBrowserifyToFile = require('./helpers/browserify').exportToSandbox; var fs = require('fs'); @@ -20,7 +22,7 @@ var compileStrategies = { basedir: appDir, debug: true, }); - b.require('./app.js', { expose: 'browser-app' }); + b.require('./app.js', {expose: 'browser-app'}); return b; }, @@ -32,7 +34,7 @@ var compileStrategies = { }); b.transform('coffeeify'); - b.require('./app.coffee', { expose: 'browser-app' }); + b.require('./app.coffee', {expose: 'browser-app'}); return b; }, }; @@ -58,7 +60,7 @@ describe('browser support', function() { // configured in fixtures/browser-app/component-config.json // and fixtures/browser-app/components/dummy-component.js - expect(app.dummyComponentOptions).to.eql({ option: 'value' }); + expect(app.dummyComponentOptions).to.eql({option: 'value'}); done(); }); }); diff --git a/test/compiler.test.js b/test/compiler.test.js index 9178e65..efd4655 100644 --- a/test/compiler.test.js +++ b/test/compiler.test.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var boot = require('../'); var fs = require('fs-extra'); var path = require('path'); @@ -54,7 +56,7 @@ describe('compiler', function() { port: 3000, host: '127.0.0.1', restApiRoot: '/rest-api', - foo: { bar: 'bat' }, + foo: {bar: 'bat'}, baz: true, }, models: { @@ -114,7 +116,7 @@ describe('compiler', function() { describe('with custom model definitions', function(done) { var dataSources = { - 'the-db': { connector: 'memory' }, + 'the-db': {connector: 'memory'}, }; it('loads model without definition', function(done) { @@ -367,12 +369,12 @@ describe('compiler', function() { it('merges datasource configs from multiple files', function(done) { appdir.createConfigFilesSync(); appdir.writeConfigFileSync('datasources.local.json', { - db: { local: 'applied' }, + db: {local: 'applied'}, }); var env = process.env.NODE_ENV || 'development'; appdir.writeConfigFileSync('datasources.' + env + '.json', { - db: { env: 'applied' }, + db: {env: 'applied'}, }); boot.compile(appdir.PATH, function(err, context) { @@ -409,10 +411,10 @@ describe('compiler', function() { }); it('merges new Object values', function(done) { - var objectValue = { key: 'value' }; + var objectValue = {key: 'value'}; appdir.createConfigFilesSync(); appdir.writeConfigFileSync('datasources.local.json', { - db: { nested: objectValue }, + db: {nested: objectValue}, }); boot.compile(appdir.PATH, function(err, context) { @@ -495,7 +497,7 @@ describe('compiler', function() { var arrayValue = ['value']; appdir.createConfigFilesSync(); appdir.writeConfigFileSync('datasources.local.json', { - db: { nested: arrayValue }, + db: {nested: arrayValue}, }); boot.compile(appdir.PATH, function(err, context) { @@ -512,10 +514,10 @@ describe('compiler', function() { it('does not cache loaded values', function(done) { appdir.createConfigFilesSync(); appdir.writeConfigFileSync('middleware.json', { - 'strong-error-handler': { params: { debug: false }}, + 'strong-error-handler': {params: {debug: false}}, }); appdir.writeConfigFileSync('middleware.development.json', { - 'strong-error-handler': { params: { debug: true }}, + 'strong-error-handler': {params: {debug: true}}, }); // Here we load main config and merge it with DEV overrides @@ -546,7 +548,7 @@ describe('compiler', function() { it('allows env specific model-config json', function(done) { appdir.createConfigFilesSync(); appdir.writeConfigFileSync('model-config.local.json', { - foo: { dataSource: 'db' }, + foo: {dataSource: 'db'}, }); boot.compile(appdir.PATH, function(err, context) { @@ -561,9 +563,9 @@ describe('compiler', function() { it('allows env specific model-config json to be merged', function(done) { appdir.createConfigFilesSync(null, null, - { foo: { dataSource: 'mongo', public: false }}); + {foo: {dataSource: 'mongo', public: false}}); appdir.writeConfigFileSync('model-config.local.json', { - foo: { dataSource: 'db' }, + foo: {dataSource: 'db'}, }); boot.compile(appdir.PATH, function(err, context) { @@ -675,11 +677,11 @@ describe('compiler', function() { it('merges app configs from multiple files', function(done) { appdir.createConfigFilesSync(); - appdir.writeConfigFileSync('config.local.json', { cfgLocal: 'applied' }); + appdir.writeConfigFileSync('config.local.json', {cfgLocal: 'applied'}); var env = process.env.NODE_ENV || 'development'; appdir.writeConfigFileSync('config.' + env + '.json', - { cfgEnv: 'applied' }); + {cfgEnv: 'applied'}); boot.compile(appdir.PATH, function(err, context) { if (err) return done(err); @@ -715,7 +717,7 @@ describe('compiler', function() { }); it('supports `appConfigRootDir` option', function(done) { - appdir.createConfigFilesSync({ port: 3000 }); + appdir.createConfigFilesSync({port: 3000}); var customDir = path.resolve(appdir.PATH, 'custom'); fs.mkdirsSync(customDir); @@ -759,7 +761,7 @@ describe('compiler', function() { it('supports `modelsRootDir` option', function(done) { appdir.createConfigFilesSync(); appdir.writeConfigFileSync('custom/model-config.json', { - foo: { dataSource: 'db' }, + foo: {dataSource: 'db'}, }); boot.compile({ @@ -1018,7 +1020,7 @@ describe('compiler', function() { it('throws when models-config.json contains 1.x `properties`', function(done) { appdir.createConfigFilesSync({}, {}, { - foo: { properties: { name: 'string' }}, + foo: {properties: {name: 'string'}}, }); expectCompileToThrow(/unsupported 1\.x format/, done); @@ -1027,7 +1029,7 @@ describe('compiler', function() { it('throws when model-config.json contains 1.x `options.base`', function(done) { appdir.createConfigFilesSync({}, {}, { - Customer: { options: { base: 'User' }}, + Customer: {options: {base: 'User'}}, }); expectCompileToThrow(/unsupported 1\.x format/, done); @@ -1035,9 +1037,9 @@ describe('compiler', function() { it('loads models from `./models`', function(done) { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); - appdir.writeConfigFileSync('models/car.json', { name: 'Car' }); + appdir.writeConfigFileSync('models/car.json', {name: 'Car'}); appdir.writeFileSync('models/car.js', ''); boot.compile(appdir.PATH, function(err, context) { @@ -1061,9 +1063,9 @@ describe('compiler', function() { it('loads coffeescript models from `./models`', function(done) { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); - appdir.writeConfigFileSync('models/car.json', { name: 'Car' }); + appdir.writeConfigFileSync('models/car.json', {name: 'Car'}); appdir.writeFileSync('models/car.coffee', ''); boot.compile(appdir.PATH, function(err, context) { @@ -1087,9 +1089,9 @@ describe('compiler', function() { it('supports `modelSources` option', function(done) { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); - appdir.writeConfigFileSync('custom-models/car.json', { name: 'Car' }); + appdir.writeConfigFileSync('custom-models/car.json', {name: 'Car'}); appdir.writeFileSync('custom-models/car.js', ''); boot.compile({ @@ -1119,9 +1121,9 @@ describe('compiler', function() { _meta: { sources: ['./custom-models'], }, - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); - appdir.writeConfigFileSync('custom-models/car.json', { name: 'Car' }); + appdir.writeConfigFileSync('custom-models/car.json', {name: 'Car'}); appdir.writeFileSync('custom-models/car.js', ''); boot.compile(appdir.PATH, function(err, context) { @@ -1145,7 +1147,7 @@ describe('compiler', function() { it('supports sources relative to node_modules', function(done) { appdir.createConfigFilesSync({}, {}, { - User: { dataSource: 'db' }, + User: {dataSource: 'db'}, }); boot.compile({ @@ -1173,9 +1175,9 @@ describe('compiler', function() { it('resolves relative path in `modelSources` option', function(done) { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); - appdir.writeConfigFileSync('custom-models/car.json', { name: 'Car' }); + appdir.writeConfigFileSync('custom-models/car.json', {name: 'Car'}); var appJS = appdir.writeFileSync('custom-models/car.js', ''); boot.compile({ @@ -1194,10 +1196,10 @@ describe('compiler', function() { it('resolves module relative path in `modelSources` option', function(done) { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); appdir.writeConfigFileSync('node_modules/custom-models/car.json', - { name: 'Car' }); + {name: 'Car'}); var appJS = appdir.writeFileSync( 'node_modules/custom-models/car.js', ''); @@ -1220,9 +1222,9 @@ describe('compiler', function() { _meta: { sources: ['./custom-models'], }, - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); - appdir.writeConfigFileSync('custom-models/car.json', { name: 'Car' }); + appdir.writeConfigFileSync('custom-models/car.json', {name: 'Car'}); var appJS = appdir.writeFileSync('custom-models/car.js', ''); boot.compile(appdir.PATH, function(err, context) { @@ -1241,10 +1243,10 @@ describe('compiler', function() { _meta: { sources: ['custom-models'], }, - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); appdir.writeConfigFileSync('node_modules/custom-models/car.json', - { name: 'Car' }); + {name: 'Car'}); var appJS = appdir.writeFileSync( 'node_modules/custom-models/car.js', ''); @@ -1261,9 +1263,9 @@ describe('compiler', function() { it('handles model definitions with no code', function(done) { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); - appdir.writeConfigFileSync('models/car.json', { name: 'Car' }); + appdir.writeConfigFileSync('models/car.json', {name: 'Car'}); boot.compile(appdir.PATH, function(err, context) { if (err) return done(err); @@ -1285,10 +1287,10 @@ describe('compiler', function() { it('excludes models not listed in `model-config.json`', function(done) { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); - appdir.writeConfigFileSync('models/car.json', { name: 'Car' }); - appdir.writeConfigFileSync('models/bar.json', { name: 'Bar' }); + appdir.writeConfigFileSync('models/car.json', {name: 'Car'}); + appdir.writeConfigFileSync('models/bar.json', {name: 'Bar'}); boot.compile(appdir.PATH, function(err, context) { if (err) return done(err); @@ -1302,7 +1304,7 @@ describe('compiler', function() { it('includes models used as Base models', function(done) { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/car.json', { name: 'Car', @@ -1326,7 +1328,7 @@ describe('compiler', function() { it('excludes pre-built base models', function(done) { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/car.json', { name: 'Car', @@ -1345,9 +1347,9 @@ describe('compiler', function() { it('sorts models, base models first', function(done) { appdir.createConfigFilesSync({}, {}, { - Vehicle: { dataSource: 'db' }, - FlyingCar: { dataSource: 'db' }, - Car: { dataSource: 'db' }, + Vehicle: {dataSource: 'db'}, + FlyingCar: {dataSource: 'db'}, + Car: {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/car.json', { name: 'Car', @@ -1373,8 +1375,8 @@ describe('compiler', function() { it('detects circular Model dependencies', function(done) { appdir.createConfigFilesSync({}, {}, { - Vehicle: { dataSource: 'db' }, - Car: { dataSource: 'db' }, + Vehicle: {dataSource: 'db'}, + Car: {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/car.json', { name: 'Car', @@ -1390,7 +1392,7 @@ describe('compiler', function() { it('uses file name as default value for model name', function(done) { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/car.json', {}); @@ -1407,7 +1409,7 @@ describe('compiler', function() { it('uses `OrderItem` as default model name for file with name `order-item`', function(done) { appdir.createConfigFilesSync({}, {}, { - OrderItem: { dataSource: 'db' }, + OrderItem: {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/order-item.json', {}); @@ -1424,7 +1426,7 @@ describe('compiler', function() { it('uses `OrderItem` as default model name for file with name `order_item`', function(done) { appdir.createConfigFilesSync({}, {}, { - OrderItem: { dataSource: 'db' }, + OrderItem: {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/order_item.json', {}); @@ -1441,7 +1443,7 @@ describe('compiler', function() { it('uses `OrderItem` as default model name for file with name `order item`', function(done) { appdir.createConfigFilesSync({}, {}, { - OrderItem: { dataSource: 'db' }, + OrderItem: {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/order item.json', {}); @@ -1458,9 +1460,9 @@ describe('compiler', function() { it('overrides `default model name` by `name` in model definition', function(done) { appdir.createConfigFilesSync({}, {}, { - overrideCar: { dataSource: 'db' }, + overrideCar: {dataSource: 'db'}, }); - appdir.writeConfigFileSync('models/car.json', { name: 'overrideCar' }); + appdir.writeConfigFileSync('models/car.json', {name: 'overrideCar'}); boot.compile(appdir.PATH, function(err, context) { if (err) return done(err); @@ -1474,19 +1476,19 @@ describe('compiler', function() { it('overwrites model with same default name', function(done) { appdir.createConfigFilesSync({}, {}, { - 'OrderItem': { dataSource: 'db' }, + 'OrderItem': {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/order-item.json', { properties: { - price: { type: 'number' }, + price: {type: 'number'}, }, }); appdir.writeFileSync('models/order-item.js', ''); appdir.writeConfigFileSync('models/orderItem.json', { properties: { - quantity: { type: 'number' }, + quantity: {type: 'number'}, }, }); var appJS = appdir.writeFileSync('models/orderItem.js', ''); @@ -1503,7 +1505,7 @@ describe('compiler', function() { definition: { name: 'OrderItem', properties: { - quantity: { type: 'number' }, + quantity: {type: 'number'}, }, }, sourceFile: appJS, @@ -1514,13 +1516,13 @@ describe('compiler', function() { it('overwrites model with same name in model definition', function(done) { appdir.createConfigFilesSync({}, {}, { - 'customOrder': { dataSource: 'db' }, + 'customOrder': {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/order1.json', { name: 'customOrder', properties: { - price: { type: 'number' }, + price: {type: 'number'}, }, }); appdir.writeFileSync('models/order1.js', ''); @@ -1528,7 +1530,7 @@ describe('compiler', function() { appdir.writeConfigFileSync('models/order2.json', { name: 'customOrder', properties: { - quantity: { type: 'number' }, + quantity: {type: 'number'}, }, }); var appJS = appdir.writeFileSync('models/order2.js', ''); @@ -1545,7 +1547,7 @@ describe('compiler', function() { definition: { name: 'customOrder', properties: { - quantity: { type: 'number' }, + quantity: {type: 'number'}, }, }, sourceFile: appJS, @@ -1608,11 +1610,11 @@ describe('compiler', function() { describe(' - mixinSources', function() { beforeEach(function() { appdir.createConfigFilesSync({}, {}, { - Car: { dataSource: 'db' }, + Car: {dataSource: 'db'}, }); appdir.writeConfigFileSync('models/car.json', { name: 'Car', - mixins: { 'TimeStamps': {}}, + mixins: {'TimeStamps': {}}, }); }); @@ -1700,7 +1702,7 @@ describe('compiler', function() { appdir.writeConfigFileSync('models/car.json', { name: 'Car', - mixins: { 'Timestamping': {}}, + mixins: {'Timestamping': {}}, }); boot.compile(appdir.PATH, function(err, context) { @@ -1775,7 +1777,7 @@ describe('compiler', function() { describe('name normalization', function() { var options; beforeEach(function() { - options = { appRootDir: appdir.PATH, mixinDirs: ['./custom-mixins'] }; + options = {appRootDir: appdir.PATH, mixinDirs: ['./custom-mixins']}; appdir.writeFileSync('custom-mixins/foo.js', ''); appdir.writeFileSync('custom-mixins/time-stamps.js', ''); @@ -1892,7 +1894,7 @@ describe('compiler', function() { it('overrides default mixin name, by `name` in JSON', function(done) { appdir.writeFileSync('mixins/foo.js', ''); - appdir.writeConfigFileSync('mixins/foo.json', { name: 'fooBar' }); + appdir.writeConfigFileSync('mixins/foo.json', {name: 'fooBar'}); var options = { appRootDir: appdir.PATH, @@ -2087,7 +2089,7 @@ describe('compiler', function() { phases: ['routes'], middleware: [{ sourceFile: path.resolve(appdir.PATH, 'my-middleware.js'), - config: { phase: 'routes' }, + config: {phase: 'routes'}, }], }); done(); @@ -2481,7 +2483,7 @@ describe('compiler', function() { }); }); - it('resolves modules relative to appRootDir', function() { + it('resolves modules relative to appRootDir', function(done) { var HANDLER_FILE = 'node_modules/handler/index.js'; appdir.writeFileSync( HANDLER_FILE, @@ -2644,7 +2646,7 @@ describe('compiler', function() { }); it('converts paths in top-level array items', function(done) { - givenMiddlewareEntrySync({ params: RELATIVE_PATH_PARAMS }); + givenMiddlewareEntrySync({params: RELATIVE_PATH_PARAMS}); boot.compile(appdir.PATH, function(err, context) { if (err) return done(err); @@ -2668,13 +2670,13 @@ describe('compiler', function() { var instructions = context.instructions; expectFirstMiddlewareParams(instructions) - .to.eql({ path: absolutePathParams[0] }); + .to.eql({path: absolutePathParams[0]}); done(); }); }); it('converts path value when params is a string', function(done) { - givenMiddlewareEntrySync({ params: RELATIVE_PATH_PARAMS[0] }); + givenMiddlewareEntrySync({params: RELATIVE_PATH_PARAMS[0]}); boot.compile(appdir.PATH, function(err, context) { if (err) return done(err); @@ -2714,7 +2716,7 @@ describe('compiler', function() { it('does not convert values not starting with `./` or `../`', function(done) { var PARAMS = ['$!.somerc', '$!/root', '$!hello!']; - givenMiddlewareEntrySync({ params: PARAMS }); + givenMiddlewareEntrySync({params: PARAMS}); boot.compile(appdir.PATH, function(err, context) { if (err) return done(err); @@ -2731,15 +2733,15 @@ describe('compiler', function() { it('loads component configs from multiple files', function(done) { appdir.createConfigFilesSync(); appdir.writeConfigFileSync('component-config.json', { - debug: { option: 'value' }, + debug: {option: 'value'}, }); appdir.writeConfigFileSync('component-config.local.json', { - debug: { local: 'applied' }, + debug: {local: 'applied'}, }); var env = process.env.NODE_ENV || 'development'; appdir.writeConfigFileSync('component-config.' + env + '.json', { - debug: { env: 'applied' }, + debug: {env: 'applied'}, }); boot.compile(appdir.PATH, function(err, context) { diff --git a/test/executor.test.js b/test/executor.test.js index fb3a262..fcaa8e0 100644 --- a/test/executor.test.js +++ b/test/executor.test.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var async = require('async'); var boot = require('../'); var path = require('path'); @@ -46,7 +48,7 @@ describe('executor', function() { port: 0, host: '127.0.0.1', restApiRoot: '/rest-api', - foo: { bar: 'bat' }, + foo: {bar: 'bat'}, baz: true, }, models: [ @@ -70,7 +72,7 @@ describe('executor', function() { simpleAppInstructions(function(err, context) { if (err) return done(err); boot.execute(app, context.instructions, function(err) { - expect(err).to.not.exist; + expect(err).to.not.exist(); expect(process.bootingFlagSet).to.be.true(); expect(app.booting).to.be.false(); done(); @@ -80,7 +82,7 @@ describe('executor', function() { it('should emit the `booted` event in the next tick', function(done) { boot.execute(app, dummyInstructions, function(err) { - expect(err).to.not.exist; + expect(err).to.not.exist(); }); app.on('booted', function() { // This test fails with a timeout when the `booted` event has not been @@ -119,7 +121,7 @@ describe('executor', function() { models: [ { name: 'Customer', - config: { dataSource: 'db' }, + config: {dataSource: 'db'}, definition: { name: 'Customer', base: 'User', @@ -130,7 +132,7 @@ describe('executor', function() { }), function(err, context) { if (err) return done(err); - expect(app.models.Customer).to.exist; + expect(app.models.Customer).to.exist(); expect(app.models.Customer.settings._customized).to.be.equal('Customer'); var UserModel = app.registry.getModel('User'); expect(UserModel.settings._customized).to.equal('Base'); @@ -151,7 +153,7 @@ describe('executor', function() { }, { name: 'Car', - config: { dataSource: 'db' }, + config: {dataSource: 'db'}, definition: { name: 'Car', base: 'Vehicle', @@ -177,7 +179,7 @@ describe('executor', function() { it('defines all models first before running the config phase', function(done) { appdir.writeFileSync('models/Customer.js', 'module.exports = ' + - function(Customer/*, Base*/) { + function(Customer/* , Base */) { Customer.on('attached', function() { Customer._modelsWhenAttached = Object.keys(Customer.modelBuilder.models); @@ -188,14 +190,14 @@ describe('executor', function() { models: [ { name: 'Customer', - config: { dataSource: 'db' }, - definition: { name: 'Customer' }, + config: {dataSource: 'db'}, + definition: {name: 'Customer'}, sourceFile: path.resolve(appdir.PATH, 'models', 'Customer.js'), }, { name: 'UniqueName', - config: { dataSource: 'db' }, - definition: { name: 'UniqueName' }, + config: {dataSource: 'db'}, + definition: {name: 'UniqueName'}, sourceFile: undefined, }, ], @@ -208,13 +210,13 @@ describe('executor', function() { }); it('defines models in the local app registry', function(done) { - app = loopback({ localRegistry: true }); + app = loopback({localRegistry: true}); boot.execute(app, someInstructions({ models: [ { name: 'LocalCustomer', - config: { dataSource: 'db' }, - definition: { name: 'LocalCustomer' }, + config: {dataSource: 'db'}, + definition: {name: 'LocalCustomer'}, sourceFile: undefined, }, ], @@ -233,7 +235,7 @@ describe('executor', function() { var file = appdir.writeFileSync('boot/badScript.js', 'require("doesnt-exist"); module.exports = {};'); - boot.execute(app, someInstructions({ bootScripts: [file] }), + boot.execute(app, someInstructions({bootScripts: [file]}), function(err) { expect(err && err.message) .to.match(/Cannot find module \'doesnt-exist\'/); @@ -272,12 +274,12 @@ describe('executor', function() { definition: fs.readJsonSync( require.resolve('loopback/common/models/user.json') ), - config: { dataSource: 'db' }, + config: {dataSource: 'db'}, sourceFile: require.resolve('loopback/common/models/user.js'), }; builtinModel.definition.redefined = true; - boot.execute(app, someInstructions({ models: [builtinModel] }), + boot.execute(app, someInstructions({models: [builtinModel]}), function(err, context) { if (err) return done(err); expect(app.models.User.settings.redefined, @@ -405,7 +407,7 @@ describe('executor', function() { } it('should apply env passed in option object', function(done) { - boot.execute(app, someInstructions({ env: 'custom_env' }), function(err) { + boot.execute(app, someInstructions({env: 'custom_env'}), function(err) { if (err) return done(err); expect(app.get('env')).to.equal('custom_env'); done(); @@ -427,12 +429,12 @@ describe('executor', function() { } async.eachSeries([ - { port: 'OPENSHIFT_SLS_PORT', host: 'OPENSHIFT_NODEJS_IP' }, - { port: 'npm_config_port', host: 'npm_config_host' }, - { port: 'npm_package_config_port', host: 'npm_package_config_host' }, - { port: 'OPENSHIFT_SLS_PORT', host: 'OPENSHIFT_SLS_IP' }, - { port: 'VCAP_APP_PORT', host: 'VCAP_APP_HOST' }, - { port: 'PORT', host: 'HOST' }, + {port: 'OPENSHIFT_SLS_PORT', host: 'OPENSHIFT_NODEJS_IP'}, + {port: 'npm_config_port', host: 'npm_config_host'}, + {port: 'npm_package_config_port', host: 'npm_package_config_host'}, + {port: 'OPENSHIFT_SLS_PORT', host: 'OPENSHIFT_SLS_IP'}, + {port: 'VCAP_APP_PORT', host: 'VCAP_APP_HOST'}, + {port: 'PORT', host: 'HOST'}, ], function(config, cb) { assertHonored(config.port, config.host, cb); }, done); @@ -440,7 +442,7 @@ describe('executor', function() { it('should prioritize host sources', function(done) { // jscs:disable requireCamelCaseOrUpperCaseIdentifiers - /*eslint-disable camelcase*/ + /* eslint-disable camelcase */ process.env.npm_config_host = randomHost(); process.env.OPENSHIFT_SLS_IP = randomHost(); process.env.OPENSHIFT_NODEJS_IP = randomHost(); @@ -451,13 +453,13 @@ describe('executor', function() { bootWithDefaults(function(err) { if (err) return done(err); assert.equal(app.get('host'), process.env.npm_config_host); - /*eslint-enable camelcase*/ + /* eslint-enable camelcase */ done(); }); }); it('should prioritize port sources', function(done) { - /*eslint-disable camelcase*/ + /* eslint-disable camelcase */ process.env.npm_config_port = randomPort(); process.env.OPENSHIFT_SLS_PORT = randomPort(); process.env.OPENSHIFT_NODEJS_PORT = randomPort(); @@ -468,7 +470,7 @@ describe('executor', function() { bootWithDefaults(function(err) { if (err) return done(err); assert.equal(app.get('port'), process.env.npm_config_port); - /*eslint-enable camelcase*/ + /* eslint-enable camelcase */ done(); }); }); @@ -482,7 +484,7 @@ describe('executor', function() { } it('should honor 0 for free port', function(done) { - boot.execute(app, someInstructions({ application: { port: 0 }}), + boot.execute(app, someInstructions({application: {port: 0}}), function(err) { if (err) return done(err); assert.equal(app.get('port'), 0); @@ -491,7 +493,7 @@ describe('executor', function() { }); it('should default to port 3000', function(done) { - boot.execute(app, someInstructions({ application: { port: undefined }}), + boot.execute(app, someInstructions({application: {port: undefined}}), function(err) { if (err) return done(err); assert.equal(app.get('port'), 3000); @@ -502,7 +504,7 @@ describe('executor', function() { it('should respect named pipes port values in ENV', function(done) { var NAMED_PORT = '\\.\\pipe\\test'; process.env.PORT = NAMED_PORT; - boot.execute(app, someInstructions({ application: { port: 3000 }}), + boot.execute(app, someInstructions({application: {port: 3000}}), function(err) { if (err) return done(err); assert.equal(app.get('port'), NAMED_PORT); @@ -518,7 +520,7 @@ describe('executor', function() { it('should parse a simple config variable', function(done) { boot.execute(app, simpleMiddlewareConfig('routes', - { path: '${restApiRoot}' } + {path: '${restApiRoot}'} ), function(err) { if (err) return done(err); @@ -533,7 +535,7 @@ describe('executor', function() { it('should parse simple config variable from env var', function(done) { process.env.restApiRoot = '/url-from-env-var'; boot.execute(app, simpleMiddlewareConfig('routes', - { path: '${restApiRoot}' } + {path: '${restApiRoot}'} ), function(err) { if (err) return done(err); @@ -550,8 +552,8 @@ describe('executor', function() { process.env.restApiRoot = '/url-from-env-var'; var bootInstructions; bootInstructions = simpleMiddlewareConfig('routes', - { path: '${restApiRoot}' }); - bootInstructions.application = { restApiRoot: '/url-from-config' }; + {path: '${restApiRoot}'}); + bootInstructions.application = {restApiRoot: '/url-from-config'}; boot.execute(app, someInstructions(bootInstructions), function(err) { if (err) return done(err); @@ -566,7 +568,7 @@ describe('executor', function() { it('should parse multiple config variables', function(done) { boot.execute(app, simpleMiddlewareConfig('routes', - { path: '${restApiRoot}', env: '${env}' } + {path: '${restApiRoot}', env: '${env}'} ), function(err) { if (err) return done(err); @@ -581,7 +583,7 @@ describe('executor', function() { it('should parse config variables in an array', function(done) { boot.execute(app, simpleMiddlewareConfig('routes', - { paths: ['${restApiRoot}'] } + {paths: ['${restApiRoot}']} ), function(err) { if (err) return done(err); @@ -597,7 +599,7 @@ describe('executor', function() { it('should parse config variables in an object', function(done) { boot.execute(app, simpleMiddlewareConfig('routes', - { info: { path: '${restApiRoot}' }} + {info: {path: '${restApiRoot}'}} ), function(err) { if (err) return done(err); @@ -613,14 +615,14 @@ describe('executor', function() { it('should parse config variables in a nested object', function(done) { boot.execute(app, simpleMiddlewareConfig('routes', - { nested: { info: { path: '${restApiRoot}' }}} + {nested: {info: {path: '${restApiRoot}'}}} ), function(err) { if (err) return done(err); supertest(app).get('/').end(function(err, res) { if (err) return done(err); expect(res.body.nested).to.eql({ - info: { path: app.get('restApiRoot') }, + info: {path: app.get('restApiRoot')}, }); done(); }); @@ -629,7 +631,7 @@ describe('executor', function() { it('should parse config variables with null values', function(done) { boot.execute(app, simpleMiddlewareConfig('routes', - { nested: { info: { path: '${restApiRoot}', some: null }}} + {nested: {info: {path: '${restApiRoot}', some: null}}} ), function(err) { if (err) return done(err); @@ -670,7 +672,7 @@ describe('executor', function() { it('should parse valid config variables', function(done) { var config = simpleMiddlewareConfig('routes', { props: ['a', '${vVar}', 1, true, function() { - }, { x: 1, y: '${y}' }], + }, {x: 1, y: '${y}'}], }); boot.execute(app, config, function(err) { if (err) return done(err); @@ -708,7 +710,7 @@ describe('executor', function() { it('should parse a simple config variable', function(done) { boot.execute(app, simpleComponentConfig( - { path: '${restApiRoot}' } + {path: '${restApiRoot}'} ), function(err) { if (err) return done(err); @@ -766,7 +768,7 @@ describe('executor', function() { it('should parse multiple config variables', function(done) { boot.execute(app, simpleComponentConfig( - { path: '${restApiRoot}', env: '${env}' } + {path: '${restApiRoot}', env: '${env}'} ), function(err) { if (err) return done(err); @@ -781,7 +783,7 @@ describe('executor', function() { it('should parse config variables in an array', function(done) { boot.execute(app, simpleComponentConfig( - { paths: ['${restApiRoot}'] } + {paths: ['${restApiRoot}']} ), function(err) { if (err) return done(err); @@ -797,7 +799,7 @@ describe('executor', function() { it('should parse config variables in an object', function(done) { boot.execute(app, simpleComponentConfig( - { info: { path: '${restApiRoot}' }} + {info: {path: '${restApiRoot}'}} ), function(err) { if (err) return done(err); @@ -813,14 +815,14 @@ describe('executor', function() { it('should parse config variables in a nested object', function(done) { boot.execute(app, simpleComponentConfig( - { nested: { info: { path: '${restApiRoot}' }}} + {nested: {info: {path: '${restApiRoot}'}}} ), function(err) { if (err) return done(err); supertest(app).get('/component').end(function(err, res) { if (err) return done(err); expect(res.body.nested).to.eql({ - info: { path: app.get('restApiRoot') }, + info: {path: app.get('restApiRoot')}, }); done(); }); @@ -833,7 +835,7 @@ describe('executor', function() { 'module.exports = function(app) { app.fnCalled = true; };'); delete app.fnCalled; - boot.execute(app, someInstructions({ bootScripts: [file] }), + boot.execute(app, someInstructions({bootScripts: [file]}), function(err) { if (err) return done(err); expect(app.fnCalled, 'exported fn was called').to.be.true(); @@ -958,12 +960,12 @@ describe('executor', function() { expect(Object.keys(require.cache)).to.include( appdir.resolve('components/test-component/index.js')); - expect(app.componentOptions).to.eql({ option: 'value' }); + expect(app.componentOptions).to.eql({option: 'value'}); done(); }); }); - it('disables component when configuration is not set', function() { + it('disables component when configuration is not set', function(done) { appdir.writeConfigFileSync('component-config.json', { './components/test-component': false, }); @@ -977,10 +979,12 @@ describe('executor', function() { expect(Object.keys(require.cache)).to.not.include( appdir.resolve('components/test-component/index.js')); + done(); }); }); - it('disable component if overrided by production configuration', function() { + it('disables component if overrided by production configuration', + function(done) { appdir.writeConfigFileSync('component-config.json', { './components/test-component': {}, }); @@ -992,11 +996,12 @@ describe('executor', function() { 'module.exports = ' + 'function(app, options) { app.componentOptions = options; }'); - boot(app, { appRootDir: appdir.PATH, env: 'production' }, function(err) { + boot(app, {appRootDir: appdir.PATH, env: 'production'}, function(err) { if (err) return done(err); expect(Object.keys(require.cache)).to.not.include( appdir.resolve('components/test-component/index.js')); + done(); }); }); @@ -1109,7 +1114,7 @@ describe('executor', function() { port: '${DYNAMIC_PORT}', }, }; - var bootInstructions = { dataSources: datasource }; + var bootInstructions = {dataSources: datasource}; process.env.DYNAMIC_PORT = '10007'; process.env.DYNAMIC_HOST = '123.321.123.132'; @@ -1123,10 +1128,10 @@ describe('executor', function() { it('should resolve dynamic config via app.get()', function(done) { var datasource = { - mydb: { host: '${DYNAMIC_HOST}' }, + mydb: {host: '${DYNAMIC_HOST}'}, }; var bootInstructions = { - application: { DYNAMIC_HOST: '127.0.0.4' }, + application: {DYNAMIC_HOST: '127.0.0.4'}, dataSources: datasource, }; boot.execute(app, someInstructions(bootInstructions), function() { @@ -1140,10 +1145,10 @@ describe('executor', function() { it('should take ENV precedence over config.json', function(done) { process.env.DYNAMIC_HOST = '127.0.0.2'; var datasource = { - mydb: { host: '${DYNAMIC_HOST}' }, + mydb: {host: '${DYNAMIC_HOST}'}, }; var bootInstructions = { - application: { DYNAMIC_HOST: '127.0.0.3' }, + application: {DYNAMIC_HOST: '127.0.0.3'}, dataSources: datasource, }; boot.execute(app, someInstructions(bootInstructions), function() { @@ -1155,9 +1160,9 @@ describe('executor', function() { it('empty dynamic conf should resolve as `undefined`', function(done) { var datasource = { - mydb: { host: '${DYNAMIC_HOST}' }, + mydb: {host: '${DYNAMIC_HOST}'}, }; - var bootInstructions = { dataSources: datasource }; + var bootInstructions = {dataSources: datasource}; boot.execute(app, someInstructions(bootInstructions), function() { expect(app.get('DYNAMIC_HOST')).to.be.undefined(); @@ -1226,8 +1231,8 @@ function someInstructions(values) { var result = { application: values.application || {}, models: values.models || [], - dataSources: values.dataSources || { db: { connector: 'memory' }}, - middleware: values.middleware || { phases: [], middleware: [] }, + dataSources: values.dataSources || {db: {connector: 'memory'}}, + middleware: values.middleware || {phases: [], middleware: []}, components: values.components || [], bootScripts: values.bootScripts || [], }; diff --git a/test/fixtures/browser-app-2/app.js b/test/fixtures/browser-app-2/app.js index 15436b4..3f9ad99 100644 --- a/test/fixtures/browser-app-2/app.js +++ b/test/fixtures/browser-app-2/app.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var loopback = require('loopback'); var boot = require('../../../'); diff --git a/test/fixtures/browser-app-2/models/robot.js b/test/fixtures/browser-app-2/models/robot.js index 64c7d9b..00e80dc 100644 --- a/test/fixtures/browser-app-2/models/robot.js +++ b/test/fixtures/browser-app-2/models/robot.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + module.exports = function(Robot) { Robot.settings._customized = 'Robot'; Robot.base.settings._customized = 'Robot'; diff --git a/test/fixtures/browser-app/app.js b/test/fixtures/browser-app/app.js index 4ef4153..c9d5c1a 100644 --- a/test/fixtures/browser-app/app.js +++ b/test/fixtures/browser-app/app.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var loopback = require('loopback'); var boot = require('../../../'); diff --git a/test/fixtures/browser-app/boot/configure.js b/test/fixtures/browser-app/boot/configure.js index 96bbc51..466cb82 100644 --- a/test/fixtures/browser-app/boot/configure.js +++ b/test/fixtures/browser-app/boot/configure.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + module.exports = function(app) { app.set('custom-key', 'custom-value'); }; diff --git a/test/fixtures/browser-app/components/dummy-component.js b/test/fixtures/browser-app/components/dummy-component.js index 4a0da4b..68ce5a5 100644 --- a/test/fixtures/browser-app/components/dummy-component.js +++ b/test/fixtures/browser-app/components/dummy-component.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + module.exports = function(app, options) { app.dummyComponentOptions = options; }; diff --git a/test/fixtures/browser-app/mixins/time-stamps.js b/test/fixtures/browser-app/mixins/time-stamps.js index 0ca7ca5..2411fd3 100644 --- a/test/fixtures/browser-app/mixins/time-stamps.js +++ b/test/fixtures/browser-app/mixins/time-stamps.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + module.exports = function(Model, options) { Model.timeStampsMixin = true; }; diff --git a/test/fixtures/browser-app/models/customer.js b/test/fixtures/browser-app/models/customer.js index 9e0a0b3..7cea74e 100644 --- a/test/fixtures/browser-app/models/customer.js +++ b/test/fixtures/browser-app/models/customer.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + module.exports = function(Customer) { Customer.settings._customized = 'Customer'; Customer.base.settings._customized = 'Base'; diff --git a/test/fixtures/env-app/boot/test/bar.js b/test/fixtures/env-app/boot/test/bar.js index 68316c9..8d681ed 100644 --- a/test/fixtures/env-app/boot/test/bar.js +++ b/test/fixtures/env-app/boot/test/bar.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + process.bootFlags.push('barLoadedInTest'); module.exports = function(app, callback) { callback(); diff --git a/test/fixtures/passport.js b/test/fixtures/passport.js index d1833f2..79bf1cf 100644 --- a/test/fixtures/passport.js +++ b/test/fixtures/passport.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var framework = { initialize: function(passport) { return function(req, res, next) { diff --git a/test/fixtures/simple-app/boot/bar.js b/test/fixtures/simple-app/boot/bar.js index f726ea3..73b5d34 100644 --- a/test/fixtures/simple-app/boot/bar.js +++ b/test/fixtures/simple-app/boot/bar.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + process.bootFlags.push('barLoaded'); module.exports = function(app, callback) { process.bootFlags.push('barStarted'); diff --git a/test/fixtures/simple-app/boot/barSync.js b/test/fixtures/simple-app/boot/barSync.js index 7aca641..b205637 100644 --- a/test/fixtures/simple-app/boot/barSync.js +++ b/test/fixtures/simple-app/boot/barSync.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + process.bootFlags.push('barSyncLoaded'); module.exports = function(app) { process.bootFlags.push('barSyncExecuted'); diff --git a/test/fixtures/simple-app/boot/booting.js b/test/fixtures/simple-app/boot/booting.js index 74f7031..9cfc84c 100644 --- a/test/fixtures/simple-app/boot/booting.js +++ b/test/fixtures/simple-app/boot/booting.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + module.exports = function(app, cb) { if (app.booting) process.bootingFlagSet = true; diff --git a/test/fixtures/simple-app/boot/foo.js b/test/fixtures/simple-app/boot/foo.js index 9add48f..4af2464 100644 --- a/test/fixtures/simple-app/boot/foo.js +++ b/test/fixtures/simple-app/boot/foo.js @@ -3,4 +3,6 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + process.bootFlags.push('fooLoaded'); diff --git a/test/fixtures/simple-app/middleware/index.js b/test/fixtures/simple-app/middleware/index.js index df0110d..a701658 100644 --- a/test/fixtures/simple-app/middleware/index.js +++ b/test/fixtures/simple-app/middleware/index.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + exports.myMiddleware = function(name) { return function(req, res, next) { req._names = req._names || []; diff --git a/test/fixtures/simple-app/node_modules/my-module/index.js b/test/fixtures/simple-app/node_modules/my-module/index.js index 3ee16e1..6278fac 100644 --- a/test/fixtures/simple-app/node_modules/my-module/index.js +++ b/test/fixtures/simple-app/node_modules/my-module/index.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + /** * Exporting a middleware as a property of the main module */ diff --git a/test/fixtures/simple-app/plugins/tracker.js b/test/fixtures/simple-app/plugins/tracker.js index 8df632a..368d11f 100644 --- a/test/fixtures/simple-app/plugins/tracker.js +++ b/test/fixtures/simple-app/plugins/tracker.js @@ -1,3 +1,5 @@ +'use strict'; + module.exports = function(opitions) { return new Tracker(opitions); }; diff --git a/test/fixtures/simple-component.js b/test/fixtures/simple-component.js index b15b827..fbbc6f4 100644 --- a/test/fixtures/simple-component.js +++ b/test/fixtures/simple-component.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + module.exports = function(loopbackApp, params) { loopbackApp.use('/component', function(req, res, next) { res.send(params); diff --git a/test/fixtures/simple-middleware.js b/test/fixtures/simple-middleware.js index aec19a8..c4c2561 100644 --- a/test/fixtures/simple-middleware.js +++ b/test/fixtures/simple-middleware.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + module.exports = function(params) { return function(req, res, next) { res.send(params); diff --git a/test/helpers/appdir.js b/test/helpers/appdir.js index cf1e67f..1ab999a 100644 --- a/test/helpers/appdir.js +++ b/test/helpers/appdir.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var path = require('path'); var fs = require('fs-extra'); var extend = require('util')._extend; @@ -27,7 +29,7 @@ appdir.init = function(cb) { appdir.createConfigFilesSync = function(appConfig, dataSources, models) { appConfig = extend({ }, appConfig); - appdir.writeConfigFileSync ('config.json', appConfig); + appdir.writeConfigFileSync('config.json', appConfig); dataSources = extend({ db: { @@ -35,11 +37,11 @@ appdir.createConfigFilesSync = function(appConfig, dataSources, models) { defaultForType: 'db', }, }, dataSources); - appdir.writeConfigFileSync ('datasources.json', dataSources); + appdir.writeConfigFileSync('datasources.json', dataSources); models = extend({ }, models); - appdir.writeConfigFileSync ('model-config.json', models); + appdir.writeConfigFileSync('model-config.json', models); }; appdir.writeConfigFileSync = function(name, json) { diff --git a/test/helpers/browser.js b/test/helpers/browser.js index 7eb5a74..7435b79 100644 --- a/test/helpers/browser.js +++ b/test/helpers/browser.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var vm = require('vm'); function createContext() { @@ -20,10 +22,10 @@ function createContext() { setTimeout: setTimeout, // used by `debug` module - document: { documentElement: { style: {}}}, + document: {documentElement: {style: {}}}, // used by `debug` module - navigator: { userAgent: 'sandbox' }, + navigator: {userAgent: 'sandbox'}, // used by crypto-browserify & friends Int32Array: Int32Array, diff --git a/test/helpers/browserify.js b/test/helpers/browserify.js index aac32d8..6453200 100644 --- a/test/helpers/browserify.js +++ b/test/helpers/browserify.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var fs = require('fs'); var sandbox = require('./sandbox'); diff --git a/test/helpers/push-name-middleware.js b/test/helpers/push-name-middleware.js index e11a1bd..88a7e38 100644 --- a/test/helpers/push-name-middleware.js +++ b/test/helpers/push-name-middleware.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + module.exports = function(name) { return function(req, res, next) { req._names = req._names || []; diff --git a/test/helpers/sandbox.js b/test/helpers/sandbox.js index 9afe701..c604a45 100644 --- a/test/helpers/sandbox.js +++ b/test/helpers/sandbox.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var fs = require('fs-extra'); var path = require('path'); diff --git a/test/utils.test.js b/test/utils.test.js index f16191c..6344a67 100644 --- a/test/utils.test.js +++ b/test/utils.test.js @@ -3,6 +3,8 @@ // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT +'use strict'; + var utils = require('../lib/utils'); var expect = require('chai').expect; var sandbox = require('./helpers/sandbox'); From 92d6a1f91caa36408cb283e093905de1be6c0663 Mon Sep 17 00:00:00 2001 From: Raymond Feng Date: Mon, 22 May 2017 08:44:21 -0700 Subject: [PATCH 3/4] 3.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Upgrade deps and fix style issues (Raymond Feng) * Provide scriptExtensions option (Supasate Choochaisri) * Update paid support URL (Siddhi Pai) * Refactor for modular and pluggable design (Raymond Feng) * Add Node v7 to Travis CI platforms (Miroslav Bajtoš) * Drop support for Node v0.10 and v0.12 (Miroslav Bajtoš) * readme: update URL to new doc site (David Cheung) * Update ja translation file (Candy) * Update header-browser.md (Sequoia McDowell) * Update translation files - round#2 (Candy) * Normalize line endings to support both LF and CRLF (Miroslav Bajtoš) * Remove "defaultForType" from datasource config (Miroslav Bajtoš) * Update deps to loopback 3.0.0 RC (Miroslav Bajtoš) * globalization: add translated strings (gunjpan) * Start development of 3.0 (Miroslav Bajtoš) --- CHANGES.md | 34 ++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index a386697..06110fe 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,37 @@ +2017-05-22, Version 3.0.0 +========================= + + * Upgrade deps and fix style issues (Raymond Feng) + + * Provide scriptExtensions option (Supasate Choochaisri) + + * Update paid support URL (Siddhi Pai) + + * Refactor for modular and pluggable design (Raymond Feng) + + * Add Node v7 to Travis CI platforms (Miroslav Bajtoš) + + * Drop support for Node v0.10 and v0.12 (Miroslav Bajtoš) + + * readme: update URL to new doc site (David Cheung) + + * Update ja translation file (Candy) + + * Update header-browser.md (Sequoia McDowell) + + * Update translation files - round#2 (Candy) + + * Normalize line endings to support both LF and CRLF (Miroslav Bajtoš) + + * Remove "defaultForType" from datasource config (Miroslav Bajtoš) + + * Update deps to loopback 3.0.0 RC (Miroslav Bajtoš) + + * globalization: add translated strings (gunjpan) + + * Start development of 3.0 (Miroslav Bajtoš) + + 2016-09-05, Version 2.22.0 ========================== diff --git a/package.json b/package.json index 9eac77e..e414b80 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "loopback-boot", - "version": "3.0.0-alpha.1", + "version": "3.0.0", "publishConfig": { "tag": "next" }, From 3ec9d3ab1c0a54d46ea27b78d8ad76d64e0e1233 Mon Sep 17 00:00:00 2001 From: Allen Boone Date: Tue, 23 May 2017 14:26:35 -0400 Subject: [PATCH 4/4] Update translated strings Q2 2017 --- intl/de/messages.json | 29 ++++++++++------------------- intl/es/messages.json | 29 ++++++++++------------------- intl/fr/messages.json | 29 ++++++++++------------------- intl/it/messages.json | 29 ++++++++++------------------- intl/ja/messages.json | 29 ++++++++++------------------- intl/ko/messages.json | 29 ++++++++++------------------- intl/nl/messages.json | 29 ++++++++++------------------- intl/pt/messages.json | 29 ++++++++++------------------- intl/tr/messages.json | 29 ++++++++++------------------- intl/zh-Hans/messages.json | 29 ++++++++++------------------- intl/zh-Hant/messages.json | 29 ++++++++++------------------- 11 files changed, 110 insertions(+), 209 deletions(-) diff --git a/intl/de/messages.json b/intl/de/messages.json index cd41472..e6c2a44 100644 --- a/intl/de/messages.json +++ b/intl/de/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "{{middleware}}-Anweisungen werden verworfen, {{loopback}}-Client unterstützt {{middleware}} nicht.", "1e5fea50eef843cbffd1d438494912c8": "Pfad \"{0}\" kann nicht aufgelöst werden", "34319676975b1abf107da7a056abb434": "Ungültiges Normalisierungsformat - \"{0}\"", - "46e3ab0ef1149ce0a171b5fac2612ea3": "{{Middleware}} \"{0}\" nicht gefunden: {1}", - "79e93b2a95e969788590c14e26bb2c1b": "Die Daten in {{model-config.json}} haben das nicht unterstützte 1.x-Format.", - "978a25819e71602cad691dbe7ba17592": "{0}-Konfiguration muss ein gültiges JSON-Objekt sein", - "be2dcdab7aa493ed8d77287eb45cfec8": "Es können keine Verzeichnisinhalte ohne Verzeichnisnamen erfordert werden", - "2634623ad4b2c5902f6c6bb25e68b733": "WARNUNG: Haupt-{{config}}-Datei \"{0}.json\" fehlt", + "3a7049e42006e8bc19e0f4fc8df63b6b": "Die `app` wird von einer nicht kompatiblen Loopback-Version {0} betrieben. Unterstützte Versionen: {1}", + "3f93b626dd9a1c33d67490f6e71018b5": "WARNUNG: Hauptkonfigurationsdatei \"{0}{{.json}}\" fehlt", + "4d052d84c8620730afd4a30832f11724": "Unbekanntes Modell {0} kann nicht konfiguriert werden", "4ed668e9187650d898acf97707df445a": "Die {{phase}} \"{0}\" ist in der Hauptkonfiguration nicht definiert.", - "6de7e97f033f2cf477297b3d05a93608": "Die {{middleware}} \"{0}\" in Phase \"{1}\" ist in der Hauptkonfiguration nicht definiert.", - "94a0c7d5ab6462f7892b90c63f316f42": "Ungültiges Array: {0}", - "ec34cc58612cb654742e4cd0a57aca78": "Kann {0} nicht anwenden: {1}", - "0b91d122f6459c8bbe7865be0936fc4a": "{{app.restBasePath}} ist erforderlich", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}} muss ein {{array}} sein", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}} muss eine {{string}} sein", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}} muss mit \"/\" beginnen", - "6037512314fac9d12af6c654a3804823": "Integriertes Modell {0} hätte definiert sein sollen", - "69746d336c89bf4bb371a6c2fe56304d": "{0} wird nicht in einen gültigen Wert aufgelöst; zurückgegeben als {1}. \"{2}\" muss in der Umgebungsvariable oder über app.get() auflösbar sein.", + "6447e6b342a2c51ab0bc53b3cbdf3742": "Sortierungskonflikt: \"{0}\" kann nicht nach \"{1}\" hinzugefügt werden, da die entgegengesetzte Reihenfolge bereits angegeben wurde", "70654dc6eb565613a33344efed3de998": "Laden von Boot-Script fehlgeschlagen: {0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "Die '{{app}}' wird von einer nicht kompatiblen {{loopback}}-Version {0} betrieben. Unterstützte Versionen: {1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "Beim Verwenden von {{loopback-boot}} mit {{loopback}} <1.9 muss das {{loopback}}-Modul für '{{require('loopback')}}' verfügbar sein.", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}} muss eine {{string}} oder {{number}} sein", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}} muss eine {{string}} sein" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0} wird nicht in einen gültigen Wert aufgelöst; zurückgegeben als {1}. \"{2}\" muss in der Umgebungsvariable oder über {{app.get()}} auflösbar sein.", + "91a742b7c3568cf6b6755741a70b3c52": "Die {{middleware}} \"{0}\" in {{phase}} \"{1}\" ist in der Hauptkonfiguration nicht definiert.", + "a3aa22086ae4976cd013065c9a3ff81c": "{0} kann nicht angewendet werden: ", + "be2cf2868ba54624fe38e9908dde5e9e": "Die Daten in {{model-config.json}} haben das nicht unterstützte {{1.x}}-Format.", + "ec551b6f2fafd8d40af801ebe5bb09f6": "{{middleware}}-Anweisungen werden verworfen, {{loopback}}-Client unterstützt {{middleware}} nicht.", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "Middleware \"{0}\" nicht gefunden: {1}" } diff --git a/intl/es/messages.json b/intl/es/messages.json index a5b9618..5a0bee3 100644 --- a/intl/es/messages.json +++ b/intl/es/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "Descartando instrucciones de {{middleware}}, el cliente de {{loopback}} no da soporte a {{middleware}}.", "1e5fea50eef843cbffd1d438494912c8": "No se puede resolver la vía de acceso \"{0}\"", "34319676975b1abf107da7a056abb434": "Formato de normalización no válido - \"{0}\"", - "46e3ab0ef1149ce0a171b5fac2612ea3": "{{Middleware}} \"{0}\" no encontrado: {1}", - "79e93b2a95e969788590c14e26bb2c1b": "Los datos de {{model-config.json}} están en un formato 1.x no soportado.", - "978a25819e71602cad691dbe7ba17592": "La configuración de {0} debe ser un objeto JSON válido", - "be2dcdab7aa493ed8d77287eb45cfec8": "no se puede exigir el contenido de directorio sin el nombre de directorio", - "2634623ad4b2c5902f6c6bb25e68b733": "AVISO: falta el archivo de {{config}} principal \"{0}.json\"", + "3a7049e42006e8bc19e0f4fc8df63b6b": "La `app` está basada en una versión de loopback incompatible {0}. Versiones soportadas: {1}", + "3f93b626dd9a1c33d67490f6e71018b5": "AVISO: falta el archivo de configuración principal \"{0}{{.json}}\"", + "4d052d84c8620730afd4a30832f11724": "No se puede configurar el modelo desconocido {0}", "4ed668e9187650d898acf97707df445a": "La {{phase}} \"{0}\" no está definida en la configuración principal.", - "6de7e97f033f2cf477297b3d05a93608": "El {{middleware}} \"{0}\" en la fase \"{1}\" no está definido en la configuración principal.", - "94a0c7d5ab6462f7892b90c63f316f42": "matriz no válida: {0}", - "ec34cc58612cb654742e4cd0a57aca78": "No se puede aplicar {0}: {1}", - "0b91d122f6459c8bbe7865be0936fc4a": "{{app.restBasePath}} es obligatorio", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}} debe ser una {{array}}", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}} debe ser una {{string}}", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}} debe empezar por \"/\"", - "6037512314fac9d12af6c654a3804823": "El modelo incorporada {0} debería haberse definido", - "69746d336c89bf4bb371a6c2fe56304d": "{0} no se resuelve como un valor válido, se ha devuelto como {1}. \"{2}\" debe poder resolverse en la variable de entorno o por medio de app.get().", + "6447e6b342a2c51ab0bc53b3cbdf3742": "Conflicto de orden: no se puede añadir \"{0}\" después de \"{1}\", porque ya se ha especificado el orden inverso.", "70654dc6eb565613a33344efed3de998": "No se ha podido cargar el script de arranque: {0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "La `{{app}}` está basada en una versión de {{loopback}} incompatible {0}. Versiones soportadas: {1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "Al utilizar {{loopback-boot}} con {{loopback}} <1.9, el módulo {{loopback}} debe estar disponible para `{{require('loopback')}}`.", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}} debe ser una {{string}} o un {{number}}", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}} debe ser una {{string}}" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0} no se resuelve como un valor válido, se ha devuelto como {1}. \"{2}\" debe poder resolverse en la variable de entorno o por medio de {{app.get()}}.", + "91a742b7c3568cf6b6755741a70b3c52": "El {{middleware}} \"{0}\" en la {{phase}} \"{1}\" no está definido en la configuración principal.", + "a3aa22086ae4976cd013065c9a3ff81c": "No se puede aplicar {0}: ", + "be2cf2868ba54624fe38e9908dde5e9e": "Los datos de {{model-config.json}} están en un formato {{1.x}} no soportado.", + "ec551b6f2fafd8d40af801ebe5bb09f6": "Descartando instrucciones de {{middleware}}, el cliente de {{loopback}} no da soporte a {{middleware}}.", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "Middleware \"{0}\" no encontrado: {1}" } diff --git a/intl/fr/messages.json b/intl/fr/messages.json index c137125..259d6f8 100644 --- a/intl/fr/messages.json +++ b/intl/fr/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "Les instructions {{middleware}} sont ignorées ; le client {{loopback}} ne prend pas en charge {{middleware}}.", "1e5fea50eef843cbffd1d438494912c8": "Impossible de résoudre le chemin \"{0}\"", "34319676975b1abf107da7a056abb434": "Format de normalisation non valide - \"{0}\"", - "46e3ab0ef1149ce0a171b5fac2612ea3": "{{Middleware}} \"{0}\" introuvable : {1}", - "79e93b2a95e969788590c14e26bb2c1b": "Les données contenues dans {{model-config.json}} sont au format 1.x qui n'est pas pris en charge.", - "978a25819e71602cad691dbe7ba17592": "La configuration {0} doit être un objet JSON valide", - "be2dcdab7aa493ed8d77287eb45cfec8": "impossible d'exiger le contenu de répertoire sans nom de répertoire", - "2634623ad4b2c5902f6c6bb25e68b733": "AVERTISSEMENT : Le fichier {{config}} principal \"{0}.json\" est manquant", + "3a7049e42006e8bc19e0f4fc8df63b6b": "L'application `app` est basée sur une version loopback {0} incompatible. Versions prises en charge : {1}", + "3f93b626dd9a1c33d67490f6e71018b5": "AVERTISSEMENT : le fichier de configuration principal \"{0}{{.json}}\" est manquant", + "4d052d84c8620730afd4a30832f11724": "Impossible de configurer le modèle inconnu {0}", "4ed668e9187650d898acf97707df445a": "{{phase}} \"{0}\" n'est pas défini dans la configuration principale.", - "6de7e97f033f2cf477297b3d05a93608": "{{middleware}} \"{0}\" dans la phase \"{1}\" n'est pas défini dans la configuration principale.", - "94a0c7d5ab6462f7892b90c63f316f42": "tableau non valide : {0}", - "ec34cc58612cb654742e4cd0a57aca78": "Impossible d'appliquer {0} : {1}", - "0b91d122f6459c8bbe7865be0936fc4a": "{{app.restBasePath}} est obligatoire", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}} doit être {{array}}", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}} doit être {{string}}", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}} doit commencer par \"/\"", - "6037512314fac9d12af6c654a3804823": "Le modèle intégré {0} doit avoir été défini", - "69746d336c89bf4bb371a6c2fe56304d": "{0} n'est pas résolu en une valeur valide, renvoyé sous forme de {1}. \"{2}\" doit pouvoir être résolu dans la variable d'environnement ou par app.get().", + "6447e6b342a2c51ab0bc53b3cbdf3742": "Conflit concernant l'ordre : impossible d'ajouter \"{0}\" après \"{1}\" car l'ordre opposé à déjà été spécifié", "70654dc6eb565613a33344efed3de998": "Echec du chargement du script d'amorçage : {0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "`{{app}}` est basé sur {{loopback}} version {0} incompatible. Versions prises en charge : {1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "Lors de l'utilisation de {{loopback-boot}} avec {{loopback}} <1.9, le module {{loopback}} doit être disponible pour `{{require('loopback')}}`.", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}} doit être {{string}} ou {{number}}", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}} doit être {{string}}" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0} n'est pas résolu en une valeur valide, renvoyé sous forme de {1}. \"{2}\" doit pouvoir être résolu dans la variable d'environnement ou par {{app.get()}}.", + "91a742b7c3568cf6b6755741a70b3c52": "Le {{middleware}} \"{0}\" dans {{phase}} \"{1}\" n'est pas défini dans la configuration principale.", + "a3aa22086ae4976cd013065c9a3ff81c": "Impossible d'appliquer {0} : ", + "be2cf2868ba54624fe38e9908dde5e9e": "Les données contenues dans {{model-config.json}} sont au format {{1.x}} qui n'est pas pris en charge.", + "ec551b6f2fafd8d40af801ebe5bb09f6": "Les instructions {{middleware}} sont ignorées ; le client {{loopback}} ne prend pas en charge {{middleware}}.", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "Middleware \"{0}\" introuvable : {1}" } diff --git a/intl/it/messages.json b/intl/it/messages.json index 52baaa6..c1c5ffd 100644 --- a/intl/it/messages.json +++ b/intl/it/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "Eliminazione delle istruzioni {{middleware}}, il client {{loopback}} non supporta {{middleware}}.", "1e5fea50eef843cbffd1d438494912c8": "Impossibile risolvere il percorso \"{0}\"", "34319676975b1abf107da7a056abb434": "Formato di normalizzazione non valido - \"{0}\"", - "46e3ab0ef1149ce0a171b5fac2612ea3": "{{Middleware}} \"{0}\" non trovato: {1}", - "79e93b2a95e969788590c14e26bb2c1b": "I dati in {{model-config.json}} sono nel formato 1.x non supportato.", - "978a25819e71602cad691dbe7ba17592": "La configurazione {0} deve essere un oggetto JSON valido", - "be2dcdab7aa493ed8d77287eb45cfec8": "impossibile richiedere il contenuto della directory senza il nome directory", - "2634623ad4b2c5902f6c6bb25e68b733": "AVVERTENZA: Il file {{config}} principale \"{0}.json\" non è presente", + "3a7049e42006e8bc19e0f4fc8df63b6b": "The `app` is powered by an incompatible loopback version {0}. Versioni supportate: {1}", + "3f93b626dd9a1c33d67490f6e71018b5": "WARNING: Main config file \"{0}{{.json}}\" is missing", + "4d052d84c8620730afd4a30832f11724": "Impossibile configurare il modello {0} sconosciuto", "4ed668e9187650d898acf97707df445a": "{{phase}} \"{0}\" non definita nella configurazione principale.", - "6de7e97f033f2cf477297b3d05a93608": "Il {{middleware}} \"{0}\" nella fase \"{1}\"non è definito nella configurazione principale.", - "94a0c7d5ab6462f7892b90c63f316f42": "array non valido: {0}", - "ec34cc58612cb654742e4cd0a57aca78": "Impossibile applicare {0}: {1}", - "0b91d122f6459c8bbe7865be0936fc4a": "{{app.restBasePath}} è obbligatorio", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}} deve essere un {{array}}", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}} deve essere una {{string}}", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}} deve iniziare con \"/\"", - "6037512314fac9d12af6c654a3804823": "Il modello integrato {0} deve essere definito", - "69746d336c89bf4bb371a6c2fe56304d": "{0} non viene risolto in un valore valido, restituito come {1}. \"{2}\" deve essere risolto in una variabile d'ambiente o da app.get().", + "6447e6b342a2c51ab0bc53b3cbdf3742": "Conflitto di ordinamento: impossibile aggiungere \"{0}\" dopo \"{1}\", perché è già stato specificato l'ordine opposto", "70654dc6eb565613a33344efed3de998": "Caricamento dello script di boot non riuscito: {0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "La `{{app}}` si basa su un {{loopback}} versione {0} incompatibile. Versioni supportate: {1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "Quando si utilizza {{loopback-boot}} con {{loopback}} <1.9, il modulo {{loopback}} deve essere disponibile per `{{require('loopback')}}`.", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}} deve essere una {{string}} o un {{number}}", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}} deve essere una {{string}}" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0} non viene risolto in un valore valido, restituito come {1}. \"{2}\" must be resolvable in Environment variable or by {{app.get()}}.", + "91a742b7c3568cf6b6755741a70b3c52": "The {{middleware}} \"{0}\" in {{phase}} \"{1}\"is not defined in the main config.", + "a3aa22086ae4976cd013065c9a3ff81c": "Cannot apply {0}: ", + "be2cf2868ba54624fe38e9908dde5e9e": "The data in {{model-config.json}} is in the unsupported {{1.x}} format.", + "ec551b6f2fafd8d40af801ebe5bb09f6": "Eliminazione delle istruzioni {{middleware}}, il client {{loopback}} non supporta {{middleware}}.", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "Middleware \"{0}\" not found: {1}" } diff --git a/intl/ja/messages.json b/intl/ja/messages.json index 74e0b70..930bf80 100644 --- a/intl/ja/messages.json +++ b/intl/ja/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "{{middleware}} 命令を破棄します。{{loopback}} クライアントでは {{middleware}} はサポートされません。", "1e5fea50eef843cbffd1d438494912c8": "パス \"{0}\" を解決できません", "34319676975b1abf107da7a056abb434": "無効な正規化形式 - \"{0}\"", - "46e3ab0ef1149ce0a171b5fac2612ea3": "{{Middleware}} \"{0}\" が見つかりません: {1}", - "79e93b2a95e969788590c14e26bb2c1b": "{{model-config.json}} のデータが、サポートされていない 1.x 形式になっています。", - "978a25819e71602cad691dbe7ba17592": "{0} 構成は、有効な JSON オブジェクトでなければなりません", - "be2dcdab7aa493ed8d77287eb45cfec8": "ディレクトリーの内容を要求するには、そのディレクトリーの名前を指定する必要があります", - "2634623ad4b2c5902f6c6bb25e68b733": "警告: メインの {{config}} ファイル \"{0}.json\" が見つかりません", + "3a7049e42006e8bc19e0f4fc8df63b6b": "「アプリケーション」は、互換性のない loopback バージョン {0} を使用しています。サポートされるバージョン: {1}", + "3f93b626dd9a1c33d67490f6e71018b5": "警告: メイン構成ファイル \"{0}{{.json}}\" が欠落しています", + "4d052d84c8620730afd4a30832f11724": "不明なモデル {0} を構成できません", "4ed668e9187650d898acf97707df445a": "メイン構成内に {{phase}} \"{0}\" が定義されていません。", - "6de7e97f033f2cf477297b3d05a93608": "フェーズ \"{1}\" の {{middleware}} \"{0}\" がメイン構成内に定義されていません。", - "94a0c7d5ab6462f7892b90c63f316f42": "無効な配列: {0}", - "ec34cc58612cb654742e4cd0a57aca78": "{0} を適用できません: {1}", - "0b91d122f6459c8bbe7865be0936fc4a": "{{app.restBasePath}} は必須です", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}} は {{array}} でなければなりません", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}} は {{string}} でなければなりません", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}} の先頭には「/」を使用してください", - "6037512314fac9d12af6c654a3804823": "組み込みモデル {0} を定義しておく必要があります", - "69746d336c89bf4bb371a6c2fe56304d": "{0} は有効な値に解決されず、{1} として返されました。 \"{2}\" は環境変数または app.get() で解決できなければなりません。", + "6447e6b342a2c51ab0bc53b3cbdf3742": "順序付けの競合: \"{0}\" を \"{1}\" の後に追加することはできません。既に逆の順序が指定されています", "70654dc6eb565613a33344efed3de998": "ブート・スクリプトのロードに失敗しました: {0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "「{{app}}」は、互換性のない {{loopback}} バージョン {0} を使用しています。 サポートされるバージョン: {1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "1.9 より前のバージョンの {{loopback}} で {{loopback-boot}} を使用する場合は、`{{require('loopback')}}` に対して {{loopback}} モジュールが使用可能でなければなりません。", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}} は {{string}} または {{number}} でなければなりません", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}} は {{string}} でなければなりません" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0} は有効な値に解決されず、{1} として返されました。 \"{2}\" は環境変数または {{app.get()}} で解決できなければなりません。", + "91a742b7c3568cf6b6755741a70b3c52": "{{phase}} \"{1}\" の {{middleware}} \"{0}\" がメイン構成内に定義されていません。", + "a3aa22086ae4976cd013065c9a3ff81c": "{0} を適用できません: ", + "be2cf2868ba54624fe38e9908dde5e9e": "{{model-config.json}} のデータが、サポートされていない {{1.x}} 形式になっています。", + "ec551b6f2fafd8d40af801ebe5bb09f6": "{{middleware}} 命令を破棄します。{{loopback}} クライアントでは {{middleware}} はサポートされません。", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "ミドルウェア \"{0}\" が見つかりません: {1}" } diff --git a/intl/ko/messages.json b/intl/ko/messages.json index 557de75..83de953 100644 --- a/intl/ko/messages.json +++ b/intl/ko/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "{{middleware}} 지시사항을 버리십시오. {{loopback}} 클라이언트가 {{middleware}}을(를) 지원하지 않습니다.", "1e5fea50eef843cbffd1d438494912c8": "\"{0}\" 경로를 해석할 수 없음", "34319676975b1abf107da7a056abb434": "올바르지 않은 정규화 형식 - \"{0}\"", - "46e3ab0ef1149ce0a171b5fac2612ea3": "{{Middleware}} \"{0}\"을(를) 찾을 수 없음: {1}", - "79e93b2a95e969788590c14e26bb2c1b": "{{model-config.json}}의 데이터가 지원되지 않는 1.x 형식입니다. ", - "978a25819e71602cad691dbe7ba17592": "{0} 구성이 올바른 JSON 오브젝트여야 함", - "be2dcdab7aa493ed8d77287eb45cfec8": "디렉토리 이름이 없는 디렉토리 컨텐츠는 필요하지 않을 수 있음", - "2634623ad4b2c5902f6c6bb25e68b733": "경고: 기본 {{config}} 파일 \"{0}.json\"이 누락됨", + "3a7049e42006e8bc19e0f4fc8df63b6b": "`앱`이 호환되지 않는 루프백 버전 {0}을(를) 기반으로 합니다. 지원되는 버전: {1}", + "3f93b626dd9a1c33d67490f6e71018b5": "경고: 기본 구성 파일 \"{0}{{.json}}\"이(가) 누락됨", + "4d052d84c8620730afd4a30832f11724": "알 수 없는 모델 {0}을(를) 구성할 수 없음", "4ed668e9187650d898acf97707df445a": "{{phase}} \"{0}\"이(가) 기본 구성에 정의되어 있지 않습니다.", - "6de7e97f033f2cf477297b3d05a93608": "단계(phase) \"{1}\"의 {{middleware}} \"{0}\"이(가) 기본 구성에 정의되어 있지 않습니다.", - "94a0c7d5ab6462f7892b90c63f316f42": "올바르지 않은 배열: {0}", - "ec34cc58612cb654742e4cd0a57aca78": "{0}을(를) 적용할 수 없음: {1}", - "0b91d122f6459c8bbe7865be0936fc4a": "{{app.restBasePath}}은(는) 필수입니다.", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}}이(가) {{array}}이어야 함", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}}이(가) {{string}}이어야 함", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}}이(가) \"/\"(으)로 시작되어야 함", - "6037512314fac9d12af6c654a3804823": "기본 모델 {0}이(가) 정의되어야 함", - "69746d336c89bf4bb371a6c2fe56304d": "{0}이(가) 올바른 값으로 해석되지 않아서 {1}(으)로 리턴되었습니다. \"{2}\"은(는) 환경 변수에서 또는 app.get()에 의해 해석 가능해야 합니다. ", + "6447e6b342a2c51ab0bc53b3cbdf3742": "순서 지정 충돌: 반대 순서로 이미 지정되어서 \"{1}\" 뒤에 \"{0}\"을(를) 추가할 수 없음", "70654dc6eb565613a33344efed3de998": "부트 스크립트를 로드하는 데 실패함: {0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "`{{app}}`이(가) 호환 불가능한 {{loopback}} 버전 {0}에 의해 실행됩니다. 지원되는 버전: {1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "{{loopback}} <1.9에서 {{loopback-boot}}을(를) 사용하는 경우 {{loopback}} 모듈이 `{{require('loopback')}}`에 사용 가능해야 합니다.", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}}이(가) {{string}} 또는 {{number}}이어야 함", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}}이(가) {{string}}이어야 함" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0}이(가) 올바른 값으로 해석되지 않아서 {1}(으)로 리턴되었습니다. \"{2}\"은(는) 환경 변수에서 또는 {{app.get()}}에 의해 해석 가능해야 합니다. ", + "91a742b7c3568cf6b6755741a70b3c52": "{{phase}} \"{1}\"의 {{middleware}} \"{0}\"이(가) 기본 구성에 정의되어 있지 않습니다. ", + "a3aa22086ae4976cd013065c9a3ff81c": "{0}을(를) 적용할 수 없음: ", + "be2cf2868ba54624fe38e9908dde5e9e": "{{model-config.json}}의 데이터가 지원되지 않는 {{1.x}} 형식입니다. ", + "ec551b6f2fafd8d40af801ebe5bb09f6": "{{middleware}} 지시사항을 버리십시오. {{loopback}} 클라이언트가 {{middleware}}을(를) 지원하지 않습니다.", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "미들웨어 \"{0}\"을(를) 찾을 수 없음: {1}" } diff --git a/intl/nl/messages.json b/intl/nl/messages.json index b145489..8be774c 100644 --- a/intl/nl/messages.json +++ b/intl/nl/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "{{middleware}} instructies worden verwijderd, {{loopback}}-client ondersteunt geen {{middleware}}.", "1e5fea50eef843cbffd1d438494912c8": "Pad \"{0}\" kan niet worden omgezet.", "34319676975b1abf107da7a056abb434": "Ongeldige normalisatie-indeling - \"{0}\"", - "46e3ab0ef1149ce0a171b5fac2612ea3": "{{Middleware}} \"{0}\" is niet gevonden: {1}", - "79e93b2a95e969788590c14e26bb2c1b": "De gegevens in {{model-config.json}} hebben de niet ondersteunde indeling 1.x.", - "978a25819e71602cad691dbe7ba17592": "{0} config moet een geldig JSON-object zijn", - "be2dcdab7aa493ed8d77287eb45cfec8": "kan geen directory-inhoud zonder directorynaam vereisen", - "2634623ad4b2c5902f6c6bb25e68b733": "Waarschuwing: Hoofdbestand {{config}} \"{0}.json\" ontbreekt", + "3a7049e42006e8bc19e0f4fc8df63b6b": "De 'app' wordt aangestuurd door een incompatibele versie van loopback, {0}. Ondersteunde versies: {1}", + "3f93b626dd9a1c33d67490f6e71018b5": "WAARSCHUWING: Hoofdconfiguratiebestand \"{0}{{.json}}\" ontbreekt.", + "4d052d84c8620730afd4a30832f11724": "Configuratie van onbekend model {0} kan niet ongedaan worden gemaakt", "4ed668e9187650d898acf97707df445a": "De {{phase}} \"{0}\" is niet gedefinieerd in de hoofdconfiguratie.", - "6de7e97f033f2cf477297b3d05a93608": "De {{middleware}} \"{0}\" in fase \"{1}\" is niet gedefinieerd in de hoofdconfiguratie.", - "94a0c7d5ab6462f7892b90c63f316f42": "Ongeldige array: {0}", - "ec34cc58612cb654742e4cd0a57aca78": "{0} kan niet worden toegepast: {1}", - "0b91d122f6459c8bbe7865be0936fc4a": "{{app.restBasePath}} is verplicht", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}} moet een {{array}} zijn", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}} moet een {{string}} zijn", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}} moet beginnen met \"/\"", - "6037512314fac9d12af6c654a3804823": "Er moet een ingebouwd model {0} zijn gedefinieerd", - "69746d336c89bf4bb371a6c2fe56304d": "{0} wordt niet omgezet in een geldige waarde; wordt geretourneerd als {1}. \"{2}\" moet omgezet kunnen worden in een omgevingsvariabele of door app.get().", + "6447e6b342a2c51ab0bc53b3cbdf3742": "Volgordeconflict: \"{0}\" kan niet worden toegevoegd na \"{1}\", omdat de omgekeerde volgorde al is opgegeven.", "70654dc6eb565613a33344efed3de998": "Laden van opstartscript is mislukt: {0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "De '{{app}}' wordt aangestuurd door een incompatibele {{loopback}}-versie {0}. Ondersteunde versies: {1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "Als {{loopback-boot}} wordt gebruikt met {{loopback}} <1.9, moet de module {{loopback}} beschikbaar zijn voor '{{require('loopback')}}'.", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}} moet een {{string}} of {{number}} zijn", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}} moet een {{string}} zijn" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0} wordt niet omgezet in een geldige waarde; wordt geretourneerd als {1}. \"{2}\" moet omgezet kunnen worden in een omgevingsvariabele of door {{app.get()}}.", + "91a742b7c3568cf6b6755741a70b3c52": "De {{middleware}} \"{0}\" in {{phase}} \"{1}\" is niet gedefinieerd in de hoofdconfiguratie.", + "a3aa22086ae4976cd013065c9a3ff81c": "{0} kan niet worden toegepast: ", + "be2cf2868ba54624fe38e9908dde5e9e": "De gegevens in {{model-config.json}} hebben de niet ondersteunde indeling {{1.x}}.", + "ec551b6f2fafd8d40af801ebe5bb09f6": "{{middleware}} instructies worden verwijderd, {{loopback}}-client ondersteunt geen {{middleware}}.", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "Middleware \"{0}\" is niet gevonden: {1}" } diff --git a/intl/pt/messages.json b/intl/pt/messages.json index 56bd922..2a98bbb 100644 --- a/intl/pt/messages.json +++ b/intl/pt/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "Descartando instruções de {{middleware}}, cliente de {{loopback}} não suporta {{middleware}}.", "1e5fea50eef843cbffd1d438494912c8": "Não é possível resolver caminho \"{0}\"", "34319676975b1abf107da7a056abb434": "Formato de normalização inválido - \"{0}\"", - "46e3ab0ef1149ce0a171b5fac2612ea3": "{{Middleware}} \"{0}\" não localizado: {1}", - "79e93b2a95e969788590c14e26bb2c1b": "Os dados em {{model-config.json}} estão no formato 1.x não suportado.", - "978a25819e71602cad691dbe7ba17592": "Configuração de {0} deve ser um objeto JSON válido", - "be2dcdab7aa493ed8d77287eb45cfec8": "Não é possível requerer conteúdo do diretório sem nome de diretório", - "2634623ad4b2c5902f6c6bb25e68b733": "AVISO: Arquivo {{config}} principal \"{0}.json\" está ausente", + "3a7049e42006e8bc19e0f4fc8df63b6b": "O `app` é desenvolvido com uma versão de loopback incompatível {0}. Versões suportadas: {1}", + "3f93b626dd9a1c33d67490f6e71018b5": "AVISO: o arquivo de configuração principal \"{0}{{.json}}\" está ausente", + "4d052d84c8620730afd4a30832f11724": "Não é possível configurar modelo desconhecido {0}", "4ed668e9187650d898acf97707df445a": "A {{phase}} \"{0}\" não foi definida na configuração principal.", - "6de7e97f033f2cf477297b3d05a93608": "O {{middleware}} \"{0}\" na fase \"{1}\" não está definido na configuração principal.", - "94a0c7d5ab6462f7892b90c63f316f42": "matriz inválida: {0}", - "ec34cc58612cb654742e4cd0a57aca78": "Não é possível aplicar {0}: {1}", - "0b91d122f6459c8bbe7865be0936fc4a": "{{app.restBasePath}} é obrigatório", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}} deve ser um {{array}}", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}} deve ser uma {{string}}", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}} deve iniciar com \"/\"", - "6037512314fac9d12af6c654a3804823": "O modelo integrado {0} deve ter sido definido", - "69746d336c89bf4bb371a6c2fe56304d": "{0} não resolve para um valor válido, retornado como {1}. \"{2}\" deve ser resolvível na variável de ambiente ou por app.get().", + "6447e6b342a2c51ab0bc53b3cbdf3742": "Conflito de ordem: não é possível incluir \"{0}\" após \"{1}\", porque a ordem oposta já foi especificada", "70654dc6eb565613a33344efed3de998": "Falha ao carregar script de inicialização: {0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "O `{{app}}` foi desenvolvido com uma versão incompatível de {{loopback}}: {0}. Versões suportadas: {1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "Ao usar {{loopback-boot}} com {{loopback}} <1.9, o módulo de {{loopback}} deve estar disponível para `{{require('loopback')}}`.", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}} deve ser uma {{string}} ou {{number}}", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}} deve ser uma {{string}}" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0} não resolve para um valor válido, retornado como {1}. \"{2}\" deve ser resolvível na variável de ambiente ou pelo {{app.get()}}.", + "91a742b7c3568cf6b6755741a70b3c52": "O {{middleware}} \"{0}\" em {{phase}} \"{1}\" não é definido na configuração principal.", + "a3aa22086ae4976cd013065c9a3ff81c": "Não é possível aplicar {0}: ", + "be2cf2868ba54624fe38e9908dde5e9e": "Os dados em {{model-config.json}} estão no formato não suportado {{1.x}}.", + "ec551b6f2fafd8d40af801ebe5bb09f6": "Descartando instruções de {{middleware}}, cliente de {{loopback}} não suporta {{middleware}}.", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "Middleware \"{0}\" não localizado: {1}" } diff --git a/intl/tr/messages.json b/intl/tr/messages.json index 4813b89..574cc81 100644 --- a/intl/tr/messages.json +++ b/intl/tr/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "{{middleware}} yönergeleri atılıyor, {{middleware}}, {{loopback}} istemcisi tarafından desteklenmiyor.", "1e5fea50eef843cbffd1d438494912c8": "\"{0}\" yolu çözülemiyor", "34319676975b1abf107da7a056abb434": "Geçersiz normalleştirme biçimi - \"{0}\"", - "46e3ab0ef1149ce0a171b5fac2612ea3": "{{Middleware}} \"{0}\" bulunamadı: {1}", - "79e93b2a95e969788590c14e26bb2c1b": "{{model-config.json}} içiindeki verileri desteklenmeyen 1.x biçiminde.", - "978a25819e71602cad691dbe7ba17592": "{0} yapılandırması geçerli bir JSON nesnesi olmalıdır", - "be2dcdab7aa493ed8d77287eb45cfec8": "dizin adı olmadan dizin içeriği istenemez", - "2634623ad4b2c5902f6c6bb25e68b733": "UYARI: Ana {{config}} dosyası \"{0}.json\" eksik", + "3a7049e42006e8bc19e0f4fc8df63b6b": "`app` uyumsuz olan geri döngü {0} sürümüyle güçlendirilmiş. Desteklenen sürümler: {1}", + "3f93b626dd9a1c33d67490f6e71018b5": "UYARI: Ana yapılandırma dosyası \"{0}{{.json}}\" eksik", + "4d052d84c8620730afd4a30832f11724": "Bilinmeyen {0} modeli yapılandırılamıyor", "4ed668e9187650d898acf97707df445a": "{{phase}} \"{0}\", ana yapılandırmada tanımlı değil", - "6de7e97f033f2cf477297b3d05a93608": "\"{1}\" aşamasındaki {{middleware}} \"{0}\" ana yapılandırmada tanımlı değil.", - "94a0c7d5ab6462f7892b90c63f316f42": "geçersiz dizi: {0}", - "ec34cc58612cb654742e4cd0a57aca78": "{0} uygulanamıyor: {1}", - "0b91d122f6459c8bbe7865be0936fc4a": "{{app.restBasePath}} zorunludur", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}} bir {{array}} olmalıdır", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}} bir {{string}} olmalıdır", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}}, \"/\" ile başlamalıdır", - "6037512314fac9d12af6c654a3804823": "{0} yerleşik modeli tanımlanmış olmalıdır", - "69746d336c89bf4bb371a6c2fe56304d": "{0} geçerli bir değere çözülmüyor, {1} olarak döndürüldü. \"{2}\" ortam değişkeninde ya da app.get() ile çözülebilir olmalıdır.", + "6447e6b342a2c51ab0bc53b3cbdf3742": "Sıralama çakışması: \"{0}\", \"{1}\" sonrasına eklenemez; karşıt sıra belirtilmiş", "70654dc6eb565613a33344efed3de998": "Önyükleme komut dosyasının yüklenmesi başarısız oldu: {0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "`{{app}}` uyumsuz olan {{loopback}} {0} sürümüyle güçlendirilmiş. Desteklenen sürümler: {1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "{{loopback-boot}} {{loopback}} <1.9 ile kullanılırken {{loopback}} modülü `{{require('loopback')}}` için kullanılabilir olmalıdır.", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}} bir {{string}} ya da {{number}} olmalıdır", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}} bir {{string}} olmalıdır" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0} geçerli bir değere çözülmüyor, {1} olarak döndürüldü. \"{2}\" ortam değişkeninde ya da {{app.get()}} ile çözülebilir olmalıdır.", + "91a742b7c3568cf6b6755741a70b3c52": "{{phase}} \"{1}\" aşamasındaki {{middleware}} \"{0}\" ana yapılandırmada tanımlı değil.", + "a3aa22086ae4976cd013065c9a3ff81c": "{0} uygulanamıyor: ", + "be2cf2868ba54624fe38e9908dde5e9e": "{{model-config.json}} içindeki verileri desteklenmeyen {{1.x}} biçiminde.", + "ec551b6f2fafd8d40af801ebe5bb09f6": "{{middleware}} yönergeleri atılıyor, {{middleware}}, {{loopback}} istemcisi tarafından desteklenmiyor.", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "Ara katman \"{0}\" bulunamadı: {1}" } diff --git a/intl/zh-Hans/messages.json b/intl/zh-Hans/messages.json index 7e61f6e..9b0fcc1 100644 --- a/intl/zh-Hans/messages.json +++ b/intl/zh-Hans/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "正在丢弃 {{middleware}} 指示信息,{{loopback}} 客户机不支持 {{middleware}}。", "1e5fea50eef843cbffd1d438494912c8": "无法解析路径“{0}”", "34319676975b1abf107da7a056abb434": "标准化格式无效 -“{0}”", - "46e3ab0ef1149ce0a171b5fac2612ea3": "找不到 {{Middleware}}“{0}”:{1}", - "79e93b2a95e969788590c14e26bb2c1b": "{{model-config.json}} 中的数据采用不受支持的 1.x 格式。", - "978a25819e71602cad691dbe7ba17592": "{0} 配置必须是有效的 JSON 对象", - "be2dcdab7aa493ed8d77287eb45cfec8": "不能在没有目录名的情况下请求目录内容", - "2634623ad4b2c5902f6c6bb25e68b733": "警告:缺少主 {{config}} 文件“{0}.json”", + "3a7049e42006e8bc19e0f4fc8df63b6b": "应用程序由不兼容的回环版本 {0} 支持。受支持的版本:{1}", + "3f93b626dd9a1c33d67490f6e71018b5": "警告:缺失主要配置文件“{0}{{.json}}”", + "4d052d84c8620730afd4a30832f11724": "无法配置未知的模型 {0}", "4ed668e9187650d898acf97707df445a": "未在主配置中定义 {{phase}}“{0}”。", - "6de7e97f033f2cf477297b3d05a93608": "未在主配置中定义阶段“{1}”中的{{middleware}}“{0}”。", - "94a0c7d5ab6462f7892b90c63f316f42": "无效的数组:{0}", - "ec34cc58612cb654742e4cd0a57aca78": "无法应用 {0}:{1}", - "0b91d122f6459c8bbe7865be0936fc4a": "{{app.restBasePath}} 是必需的", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}} 必须为 {{array}}", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}} 必须为 {{string}}", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}} 必须以“/”开头", - "6037512314fac9d12af6c654a3804823": "应该已定义内置模型 {0}", - "69746d336c89bf4bb371a6c2fe56304d": "{0} 未解析为有效值,返回为 {1}。“{2}”必须可在环境变量中解析或者可由 app.get() 解析。", + "6447e6b342a2c51ab0bc53b3cbdf3742": "顺序冲突:不能在“{1}”之后添加“{0}”,因为已指定相反顺序", "70654dc6eb565613a33344efed3de998": "无法装入引导脚本:{0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "“{{app}}”由不兼容的 {{loopback}} 版本 {0} 提供支持。受支持的版本:{1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "在将 {{loopback-boot}} 用于 {{loopback}} <1.9 时,{{loopback}} 模块必须可用于“{{require('loopback')}}”。", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}} 必须为 {{string}} 或 {{number}}", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}} 必须为 {{string}}" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0} 未解析为有效值,返回为 {1}。“{2}”必须可在环境变量中解析或由 {{app.get()}} 解析。", + "91a742b7c3568cf6b6755741a70b3c52": "未在主配置中定义 {{phase}}“{1}”中的 {{middleware}}“{0}”。", + "a3aa22086ae4976cd013065c9a3ff81c": "无法应用 {0}:", + "be2cf2868ba54624fe38e9908dde5e9e": "{{model-config.json}} 中的数据不是受支持的 {{1.x}} 格式。", + "ec551b6f2fafd8d40af801ebe5bb09f6": "正在丢弃 {{middleware}} 指示信息,{{loopback}} 客户机不支持 {{middleware}}。", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "找不到中间件“{0}”:{1}" } diff --git a/intl/zh-Hant/messages.json b/intl/zh-Hant/messages.json index 9c9d5bc..67fe213 100644 --- a/intl/zh-Hant/messages.json +++ b/intl/zh-Hant/messages.json @@ -1,26 +1,17 @@ { - "ec551b6f2fafd8d40af801ebe5bb09f6": "正在捨棄 {{middleware}} 指令,{{loopback}} 用戶端不支援 {{middleware}}。", "1e5fea50eef843cbffd1d438494912c8": "無法解析路徑 \"{0}\"", "34319676975b1abf107da7a056abb434": "無效的正規化格式 - \"{0}\"", - "46e3ab0ef1149ce0a171b5fac2612ea3": "找不到 {{Middleware}} \"{0}\":{1}", - "79e93b2a95e969788590c14e26bb2c1b": "{{model-config.json}} 中的資料是不受支援的 1.x 格式。", - "978a25819e71602cad691dbe7ba17592": "{0} 配置必須是有效的 JSON 物件", - "be2dcdab7aa493ed8d77287eb45cfec8": "缺少目錄名稱,無法取得目錄內容", - "2634623ad4b2c5902f6c6bb25e68b733": "警告:遺漏主要 {{config}} 檔 \"{0}.json\"", + "3a7049e42006e8bc19e0f4fc8df63b6b": "'app' 採用不相容的 LoopBack 版本 {0}。支援的版本:{1}", + "3f93b626dd9a1c33d67490f6e71018b5": "警告:遺漏主要配置檔 \"{0}{{.json}}\"", + "4d052d84c8620730afd4a30832f11724": "無法配置不明模型 {0}", "4ed668e9187650d898acf97707df445a": "主要配置中未定義 {{phase}} \"{0}\"。", - "6de7e97f033f2cf477297b3d05a93608": "主要配置中未定義階段 \"{1}\" 中的 {{middleware}} \"{0}\"。", - "94a0c7d5ab6462f7892b90c63f316f42": "無效陣列:{0}", - "ec34cc58612cb654742e4cd0a57aca78": "無法套用 {0}:{1}", - "0b91d122f6459c8bbe7865be0936fc4a": "需要 {{app.restBasePath}}", - "1cda77c9954be299bb7154f73cb6ab74": "{{instructions.middleware.phases}} 必須是 {{array}}", - "22549489736fb0d7eba5a4b08977505f": "{{app.host}} 必須是 {{string}}", - "4c581cc529a7aeda620d5c4b4ef5cfa8": "{{app.restApiRoot}} 的開頭必須是 \"/\"", - "6037512314fac9d12af6c654a3804823": "應該已定義內建模型 {0}", - "69746d336c89bf4bb371a6c2fe56304d": "{0} 未解析成有效的值,傳回 {1}。\"{2}\" 必須可在環境變數中解析或由 app.get() 解析。", + "6447e6b342a2c51ab0bc53b3cbdf3742": "排序衝突:不能將 \"{0}\" 新增至 \"{1}\" 後面,因為已指定相反順序", "70654dc6eb565613a33344efed3de998": "載入啟動 Script 時失敗:{0}\n{1}", - "b078ccd043437a258581e387f93dc1a5": "`{{app}}` 採用不相容的 {{loopback}} {0} 版技術。支援的版本:{1}", - "e8d29edfb313cfe64f5c96cc7d3d5b4b": "當 {{loopback-boot}} 與 {{loopback}} <1.9 搭配使用時,{{loopback}} 模組必須可供 `{{require('loopback')}}` 使用。", - "f48405e7c61c3d665b601c9ba41da424": "{{app.port}} 必須是 {{string}} 或 {{number}}", - "fa2a7d5137c8891693f9515d48f5b7d7": "{{app.restApiRoot}} 必須是 {{string}}" + "7f7bdcadb75abfef1bd8a126d547dd6d": "{0} 未解析成有效的值,傳回 {1}。\"{2}\" 必須可在環境變數中解析或由 {{app.get()}} 解析。", + "91a742b7c3568cf6b6755741a70b3c52": "主要配置中未定義 {{phase}} \"{1}\" 中的 {{middleware}} \"{0}\"。", + "a3aa22086ae4976cd013065c9a3ff81c": "無法套用 {0}:", + "be2cf2868ba54624fe38e9908dde5e9e": "{{model-config.json}} 中的資料採用不受支援的 {{1.x}} 格式。", + "ec551b6f2fafd8d40af801ebe5bb09f6": "正在捨棄 {{middleware}} 指令,{{loopback}} 用戶端不支援 {{middleware}}。", + "fdc23df1bd0fe55fe3faabcc89ff60f3": "找不到中介軟體 \"{0}\":{1}" }