MCPcopy Index your code
hub / github.com/ember-cli/ember-cli / usage

Function usage

dev/update-blueprint-dependencies.js:3–21  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1'use strict';
2
3function usage() {
4 console.log(`This script updates the dependencies / devDependencies in the main addon and app blueprints along with their corresponding test fixtures.
5
6Options:
7
8 - '--ember-source' (required) - The dist-tag to use for ember-source
9 - '--ember-data' (required) - The dist-tag to use for ember-data
10 - '--filter' (optional) - A RegExp to filter the packages to update by
11 - '--latest' (optional) - Always use the latest version available for a package (includes major bumps, 'false' by default)
12
13Example:
14
15node dev/update-blueprint-dependencies.js --ember-source=beta --ember-data=beta
16
17node dev/update-blueprint-dependencies.js --filter /eslint/
18
19node dev/update-blueprint-dependencies.js --filter some-package@beta
20`);
21}
22
23const fs = require('fs');
24const path = require('path');

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…