ember-cli 4.3.0 → 4.5.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +8 -8
- package/CHANGELOG.md +51 -0
- package/blueprints/addon/additional-dev-dependencies.json +1 -1
- package/blueprints/addon/files/.github/workflows/ci.yml +9 -6
- package/blueprints/addon/files/.travis.yml +1 -1
- package/blueprints/addon/files/CONTRIBUTING.md +1 -1
- package/blueprints/addon/files/README.md +6 -12
- package/blueprints/addon/index.js +3 -4
- package/blueprints/app/files/.github/workflows/ci.yml +6 -4
- package/blueprints/app/files/.travis.yml +1 -1
- package/blueprints/app/files/README.md +1 -1
- package/blueprints/app/files/config/environment.js +0 -4
- package/blueprints/app/files/package.json +15 -16
- package/blueprints/app/index.js +2 -0
- package/docs/build/data.json +95 -68
- package/lib/broccoli/default-packager.js +2 -2
- package/lib/broccoli/ember-addon.js +1 -1
- package/lib/broccoli/ember-app.js +30 -4
- package/lib/broccoli/vendor-prefix.js +7 -0
- package/lib/cli/cli.js +1 -1
- package/lib/cli/index.js +1 -1
- package/lib/commands/destroy.js +1 -1
- package/lib/commands/generate.js +3 -3
- package/lib/commands/init.js +1 -2
- package/lib/models/addon.js +1 -1
- package/lib/models/blueprint.js +23 -15
- package/lib/models/command.js +10 -15
- package/lib/models/project.js +10 -10
- package/lib/tasks/addon-install.js +1 -1
- package/lib/tasks/create-and-step-into-directory.js +2 -26
- package/lib/tasks/generate-from-blueprint.js +1 -1
- package/lib/tasks/install-blueprint.js +1 -1
- package/lib/tasks/server/express-server.js +1 -1
- package/lib/tasks/server/livereload-server.js +1 -1
- package/lib/utilities/directory-for-package-name.js +31 -0
- package/lib/utilities/markdown-color.js +1 -1
- package/package.json +14 -14
- package/tests/helpers/default-packager.js +0 -1
- package/tests/helpers/fixturify-project.js +1 -1
- package/tests/helpers/run-command.js +1 -1
- package/blueprints/addon/files/gitignore +0 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const path = require('path');
|
|
4
|
-
const merge = require('ember-cli-lodash-subset')
|
|
4
|
+
const { merge } = require('ember-cli-lodash-subset');
|
|
5
5
|
const FixturifyProject = require('fixturify-project');
|
|
6
6
|
const Project = require('../../lib/models/project');
|
|
7
7
|
const MockCLI = require('./mock-cli');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
const chalk = require('chalk');
|
|
4
4
|
const spawn = require('child_process').spawn;
|
|
5
|
-
const defaults = require('ember-cli-lodash-subset')
|
|
5
|
+
const { defaults } = require('ember-cli-lodash-subset');
|
|
6
6
|
const killCliProcess = require('./kill-cli-process');
|
|
7
7
|
const logOnFailure = require('./log-on-failure');
|
|
8
8
|
let debug = require('heimdalljs-logger')('run-command');
|