ember-cli 6.7.0-alpha.1 → 6.7.0-alpha.2
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/CHANGELOG.md +18 -0
- package/docs/build/data.json +69 -96
- package/lib/commands/init.js +1 -1
- package/lib/models/blueprint.js +34 -20
- package/lib/tasks/create-and-step-into-directory.js +1 -1
- package/lib/tasks/git-init.js +1 -1
- package/lib/tasks/npm-task.js +1 -1
- package/lib/utilities/lint-fix.js +1 -1
- package/package.json +6 -2
- package/{blueprints/addon → packages/addon-blueprint}/index.js +12 -7
- package/packages/addon-blueprint/node_modules/.bin/sort-package-json +21 -0
- package/packages/addon-blueprint/package.json +23 -0
- package/{blueprints/app → packages/app-blueprint}/files/config/ember-cli-update.json +1 -1
- package/{blueprints/app → packages/app-blueprint}/files/package.json +1 -1
- package/{blueprints/app → packages/app-blueprint}/index.js +7 -7
- package/packages/app-blueprint/package.json +17 -0
- package/packages/blueprint-blueprint/package.json +4 -0
- package/packages/blueprint-model/package.json +13 -0
- package/{lib/models → packages/blueprint-model/utilities}/edit-file-diff.js +1 -1
- package/{lib/models → packages/blueprint-model/utilities}/file-info.js +2 -2
- package/pnpm-workspace.yaml +2 -0
- /package/{blueprints/addon → packages/addon-blueprint}/additional-package.json +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/.github/workflows/ci.yml +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/CONTRIBUTING.md +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/LICENSE.md +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/README.md +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/addon/.gitkeep +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/app/.gitkeep +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/config/ember-try.js +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/config/optional-features.json +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/ember-cli-build.js +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/index.js +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/npmignore +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/tsconfig.declarations.json +0 -0
- /package/{blueprints/addon → packages/addon-blueprint}/files/tsconfig.json +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/.editorconfig +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/.ember-cli +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/.github/workflows/ci.yml +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/.prettierignore +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/.prettierrc.js +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/.stylelintignore +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/.stylelintrc.js +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/.template-lintrc.js +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/.watchmanconfig +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/README.md +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/_js_eslint.config.mjs +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/_ts_eslint.config.mjs +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/app.ts +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/components/.gitkeep +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/config/environment.d.ts +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/controllers/.gitkeep +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/deprecation-workflow.ts +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/helpers/.gitkeep +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/index.html +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/models/.gitkeep +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/router.ts +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/routes/.gitkeep +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/styles/app.css +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/templates/_js_application.gjs +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/templates/_ts_application.gts +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/app/templates/application.hbs +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/config/environment.js +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/config/optional-features.json +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/config/targets.js +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/ember-cli-build.js +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/gitignore +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/public/robots.txt +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/testem.js +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/tests/helpers/index.ts +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/tests/index.html +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/tests/integration/.gitkeep +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/tests/test-helper.ts +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/tests/unit/.gitkeep +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/tsconfig.json +0 -0
- /package/{blueprints/app → packages/app-blueprint}/files/types/global.d.ts +0 -0
- /package/{blueprints/blueprint → packages/blueprint-blueprint}/files/blueprints/__name__/files/.gitkeep +0 -0
- /package/{blueprints/blueprint → packages/blueprint-blueprint}/files/blueprints/__name__/index.js +0 -0
- /package/{blueprints/blueprint → packages/blueprint-blueprint}/index.js +0 -0
- /package/{lib → packages/blueprint-model}/utilities/directory-for-package-name.js +0 -0
- /package/{lib/experiments/index.js → packages/blueprint-model/utilities/experiments.js} +0 -0
- /package/{lib → packages/blueprint-model}/utilities/open-editor.js +0 -0
- /package/{lib → packages/blueprint-model}/utilities/prepend-emoji.js +0 -0
- /package/{lib → packages/blueprint-model}/utilities/process-template.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-06-30)
|
|
4
|
+
|
|
5
|
+
* @ember-tooling/classic-build-addon-blueprint 6.7.0-alpha.2 (patch)
|
|
6
|
+
* @ember-tooling/classic-build-app-blueprint 6.7.0-alpha.2 (patch)
|
|
7
|
+
* @ember-tooling/blueprint-blueprint 0.0.1 (patch)
|
|
8
|
+
* @ember-tooling/blueprint-model 0.0.1 (patch)
|
|
9
|
+
* ember-cli 6.7.0-alpha.2 (patch)
|
|
10
|
+
|
|
11
|
+
#### :house: Internal
|
|
12
|
+
* Other
|
|
13
|
+
* [#10735](https://github.com/ember-cli/ember-cli/pull/10735) remove unnecessary project override ([@mansona](https://github.com/mansona))
|
|
14
|
+
* `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`, `@ember-tooling/blueprint-blueprint`, `@ember-tooling/blueprint-model`
|
|
15
|
+
* [#10736](https://github.com/ember-cli/ember-cli/pull/10736) update all sub-packages to have the @ember-tooling prefix ([@mansona](https://github.com/mansona))
|
|
16
|
+
* [#10671](https://github.com/ember-cli/ember-cli/pull/10671) Implement the built in app, addon, and blueprint blueprints by package lookup ([@mansona](https://github.com/mansona))
|
|
17
|
+
|
|
18
|
+
#### Committers: 1
|
|
19
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
20
|
+
|
|
3
21
|
## Release (2025-06-16)
|
|
4
22
|
|
|
5
23
|
* ember-cli 6.7.0-alpha.1 (minor)
|
package/docs/build/data.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"logo": "https://ember-cli.com/assets/images/ember-cli-logo-small-dark.png",
|
|
4
4
|
"name": "ember-cli",
|
|
5
5
|
"description": "Command line tool for developing ambitious ember.js apps",
|
|
6
|
-
"version": "6.7.0-alpha.
|
|
6
|
+
"version": "6.7.0-alpha.2-master-3225f67733"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"lib/broccoli/default-packager.js": {
|
|
@@ -278,13 +278,6 @@
|
|
|
278
278
|
"fors": {},
|
|
279
279
|
"namespaces": {}
|
|
280
280
|
},
|
|
281
|
-
"lib/utilities/directory-for-package-name.js": {
|
|
282
|
-
"name": "lib/utilities/directory-for-package-name.js",
|
|
283
|
-
"modules": {},
|
|
284
|
-
"classes": {},
|
|
285
|
-
"fors": {},
|
|
286
|
-
"namespaces": {}
|
|
287
|
-
},
|
|
288
281
|
"lib/utilities/ember-app-utils.js": {
|
|
289
282
|
"name": "lib/utilities/ember-app-utils.js",
|
|
290
283
|
"modules": {},
|
|
@@ -594,7 +587,7 @@
|
|
|
594
587
|
"module": "ember-cli",
|
|
595
588
|
"namespace": "Blueprint",
|
|
596
589
|
"file": "lib/models/blueprint.js",
|
|
597
|
-
"line":
|
|
590
|
+
"line": 35,
|
|
598
591
|
"description": "A blueprint is a bundle of template files with optional install\nlogic.\n\nBlueprints follow a simple structure. Let's take the built-in\n`controller` blueprint as an example:\n\n```\nblueprints/controller\n├── files\n│ ├── app\n│ │ └── __path__\n│ │ └── __name__.js\n└── index.js\n\nblueprints/controller-test\n├── files\n│ └── tests\n│ └── unit\n│ └── controllers\n│ └── __test__.js\n└── index.js\n```\n\n## Files\n\n`files` contains templates for the all the files to be\ninstalled into the target directory.\n\nThe `__name__` token is subtituted with the dasherized\nentity name at install time. For example, when the user\ninvokes `ember generate controller foo` then `__name__` becomes\n`foo`. When the `--pod` flag is used, for example `ember\ngenerate controller foo --pod` then `__name__` becomes\n`controller`.\n\nThe `__path__` token is substituted with the blueprint\nname at install time. For example, when the user invokes\n`ember generate controller foo` then `__path__` becomes\n`controller`. When the `--pod` flag is used, for example\n`ember generate controller foo --pod` then `__path__`\nbecomes `foo` (or `<podModulePrefix>/foo` if the\npodModulePrefix is defined). This token is primarily for\npod support, and is only necessary if the blueprint can be\nused in pod structure. If the blueprint does not require pod\nsupport, simply use the blueprint name instead of the\n`__path__` token.\n\nThe `__test__` token is substituted with the dasherized\nentity name and appended with `-test` at install time.\nThis token is primarily for pod support and only necessary\nif the blueprint requires support for a pod structure. If\nthe blueprint does not require pod support, simply use the\n`__name__` token instead.\n\n## Template Variables (AKA Locals)\n\nVariables can be inserted into templates with\n`<%= someVariableName %>`.\n\nFor example, the built-in `util` blueprint\n`files/app/utils/__name__.js` looks like this:\n\n```js\nexport default function <%= camelizedModuleName %>() {\n return true;\n}\n```\n\n`<%= camelizedModuleName %>` is replaced with the real\nvalue at install time.\n\nThe following template variables are provided by default:\n\n- `dasherizedPackageName`\n- `classifiedPackageName`\n- `dasherizedModuleName`\n- `classifiedModuleName`\n- `camelizedModuleName`\n\n`packageName` is the project name as found in the project's\n`package.json`.\n\n`moduleName` is the name of the entity being generated.\n\nThe mechanism for providing custom template variables is\ndescribed below.\n\n## Index.js\n\nCustom installation and uninstallation behavior can be added\nby overriding the hooks documented below. `index.js` should\nexport a plain object, which will extend the prototype of the\n`Blueprint` class. If needed, the original `Blueprint` prototype\ncan be accessed through the `_super` property.\n\n```js\nmodule.exports = {\n locals(options) {\n // Return custom template variables here.\n return {};\n },\n\n normalizeEntityName(entityName) {\n // Normalize and validate entity name here.\n return entityName;\n },\n\n fileMapTokens(options) {\n // Return custom tokens to be replaced in your files\n return {\n __token__(options){\n // logic to determine value goes here\n return 'value';\n }\n }\n },\n\n filesPath(options) {\n return path.join(this.path, 'files');\n },\n\n beforeInstall(options) {},\n afterInstall(options) {},\n beforeUninstall(options) {},\n afterUninstall(options) {}\n\n};\n```\n\n## Blueprint Hooks\n\n### beforeInstall & beforeUninstall\n\nCalled before any of the template files are processed and receives\nthe `options` and `locals` hashes as parameters. Typically used for\nvalidating any additional command line options or for any asynchronous\nsetup that is needed. As an example, the `controller` blueprint validates\nits `--type` option in this hook. If you need to run any asynchronous code,\nwrap it in a promise and return that promise from these hooks. This will\nensure that your code is executed correctly.\n\n### afterInstall & afterUninstall\n\nThe `afterInstall` and `afterUninstall` hooks receives the same\narguments as `locals`. Use it to perform any custom work after the\nfiles are processed. For example, the built-in `route` blueprint\nuses these hooks to add and remove relevant route declarations in\n`app/router.js`.\n\n### Overriding Install\n\nIf you don't want your blueprint to install the contents of\n`files` you can override the `install` method. It receives the\nsame `options` object described above and must return a promise.\nSee the built-in `resource` blueprint for an example of this.",
|
|
599
592
|
"is_constructor": 1,
|
|
600
593
|
"extends": "CoreObject",
|
|
@@ -3569,7 +3562,7 @@
|
|
|
3569
3562
|
},
|
|
3570
3563
|
{
|
|
3571
3564
|
"file": "lib/models/blueprint.js",
|
|
3572
|
-
"line":
|
|
3565
|
+
"line": 204,
|
|
3573
3566
|
"description": "Indicates whether or not a blueprint is a candidate for automatic transpilation from TS to JS.\nThis property could be false in the case that the blueprint is written in JS and is not intended\nto work with TS at all, OR in the case that the blueprint is written in TS and the author does\nnot intend to support transpilation to JS.",
|
|
3574
3567
|
"access": "public",
|
|
3575
3568
|
"tagname": "",
|
|
@@ -3581,7 +3574,7 @@
|
|
|
3581
3574
|
},
|
|
3582
3575
|
{
|
|
3583
3576
|
"file": "lib/models/blueprint.js",
|
|
3584
|
-
"line":
|
|
3577
|
+
"line": 225,
|
|
3585
3578
|
"description": "Process the options object coming from either\nthe `init`, `install` or `uninstall` hook.",
|
|
3586
3579
|
"access": "private",
|
|
3587
3580
|
"tagname": "",
|
|
@@ -3599,7 +3592,7 @@
|
|
|
3599
3592
|
},
|
|
3600
3593
|
{
|
|
3601
3594
|
"file": "lib/models/blueprint.js",
|
|
3602
|
-
"line":
|
|
3595
|
+
"line": 241,
|
|
3603
3596
|
"description": "Hook to specify the path to the blueprint's files. By default this is\n`path.join(this.path, 'files)`.\n\nThis can be used to customize which set of files to install based on options\nor environmental variables. It defaults to the `files` directory within the\nblueprint's folder.",
|
|
3604
3597
|
"access": "public",
|
|
3605
3598
|
"tagname": "",
|
|
@@ -3621,7 +3614,7 @@
|
|
|
3621
3614
|
},
|
|
3622
3615
|
{
|
|
3623
3616
|
"file": "lib/models/blueprint.js",
|
|
3624
|
-
"line":
|
|
3617
|
+
"line": 258,
|
|
3625
3618
|
"description": "Used to retrieve files for blueprint.",
|
|
3626
3619
|
"access": "public",
|
|
3627
3620
|
"tagname": "",
|
|
@@ -3643,7 +3636,7 @@
|
|
|
3643
3636
|
},
|
|
3644
3637
|
{
|
|
3645
3638
|
"file": "lib/models/blueprint.js",
|
|
3646
|
-
"line":
|
|
3639
|
+
"line": 281,
|
|
3647
3640
|
"itemtype": "method",
|
|
3648
3641
|
"name": "srcPath",
|
|
3649
3642
|
"params": [
|
|
@@ -3662,7 +3655,7 @@
|
|
|
3662
3655
|
},
|
|
3663
3656
|
{
|
|
3664
3657
|
"file": "lib/models/blueprint.js",
|
|
3665
|
-
"line":
|
|
3658
|
+
"line": 290,
|
|
3666
3659
|
"description": "Hook for normalizing entity name\n\nUse the `normalizeEntityName` hook to add custom normalization and\nvalidation of the provided entity name. The default hook does not\nmake any changes to the entity name, but makes sure an entity name\nis present and that it doesn't have a trailing slash.\n\nThis hook receives the entity name as its first argument. The string\nreturned by this hook will be used as the new entity name.",
|
|
3667
3660
|
"access": "public",
|
|
3668
3661
|
"tagname": "",
|
|
@@ -3684,7 +3677,7 @@
|
|
|
3684
3677
|
},
|
|
3685
3678
|
{
|
|
3686
3679
|
"file": "lib/models/blueprint.js",
|
|
3687
|
-
"line":
|
|
3680
|
+
"line": 310,
|
|
3688
3681
|
"description": "Write a status and message to the UI",
|
|
3689
3682
|
"access": "private",
|
|
3690
3683
|
"tagname": "",
|
|
@@ -3712,7 +3705,7 @@
|
|
|
3712
3705
|
},
|
|
3713
3706
|
{
|
|
3714
3707
|
"file": "lib/models/blueprint.js",
|
|
3715
|
-
"line":
|
|
3708
|
+
"line": 324,
|
|
3716
3709
|
"access": "private",
|
|
3717
3710
|
"tagname": "",
|
|
3718
3711
|
"itemtype": "method",
|
|
@@ -3733,7 +3726,7 @@
|
|
|
3733
3726
|
},
|
|
3734
3727
|
{
|
|
3735
3728
|
"file": "lib/models/blueprint.js",
|
|
3736
|
-
"line":
|
|
3729
|
+
"line": 336,
|
|
3737
3730
|
"description": "Actions lookup",
|
|
3738
3731
|
"access": "private",
|
|
3739
3732
|
"tagname": "",
|
|
@@ -3745,7 +3738,7 @@
|
|
|
3745
3738
|
},
|
|
3746
3739
|
{
|
|
3747
3740
|
"file": "lib/models/blueprint.js",
|
|
3748
|
-
"line":
|
|
3741
|
+
"line": 374,
|
|
3749
3742
|
"description": "Calls an action.",
|
|
3750
3743
|
"access": "private",
|
|
3751
3744
|
"tagname": "",
|
|
@@ -3771,7 +3764,7 @@
|
|
|
3771
3764
|
},
|
|
3772
3765
|
{
|
|
3773
3766
|
"file": "lib/models/blueprint.js",
|
|
3774
|
-
"line":
|
|
3767
|
+
"line": 392,
|
|
3775
3768
|
"description": "Prints warning for pod unsupported.",
|
|
3776
3769
|
"access": "private",
|
|
3777
3770
|
"tagname": "",
|
|
@@ -3782,7 +3775,7 @@
|
|
|
3782
3775
|
},
|
|
3783
3776
|
{
|
|
3784
3777
|
"file": "lib/models/blueprint.js",
|
|
3785
|
-
"line":
|
|
3778
|
+
"line": 409,
|
|
3786
3779
|
"access": "private",
|
|
3787
3780
|
"tagname": "",
|
|
3788
3781
|
"itemtype": "method",
|
|
@@ -3799,7 +3792,7 @@
|
|
|
3799
3792
|
},
|
|
3800
3793
|
{
|
|
3801
3794
|
"file": "lib/models/blueprint.js",
|
|
3802
|
-
"line":
|
|
3795
|
+
"line": 420,
|
|
3803
3796
|
"access": "private",
|
|
3804
3797
|
"tagname": "",
|
|
3805
3798
|
"itemtype": "method",
|
|
@@ -3816,7 +3809,7 @@
|
|
|
3816
3809
|
},
|
|
3817
3810
|
{
|
|
3818
3811
|
"file": "lib/models/blueprint.js",
|
|
3819
|
-
"line":
|
|
3812
|
+
"line": 449,
|
|
3820
3813
|
"access": "private",
|
|
3821
3814
|
"tagname": "",
|
|
3822
3815
|
"itemtype": "method",
|
|
@@ -3848,7 +3841,7 @@
|
|
|
3848
3841
|
},
|
|
3849
3842
|
{
|
|
3850
3843
|
"file": "lib/models/blueprint.js",
|
|
3851
|
-
"line":
|
|
3844
|
+
"line": 475,
|
|
3852
3845
|
"access": "private",
|
|
3853
3846
|
"tagname": "",
|
|
3854
3847
|
"itemtype": "method",
|
|
@@ -3874,7 +3867,7 @@
|
|
|
3874
3867
|
},
|
|
3875
3868
|
{
|
|
3876
3869
|
"file": "lib/models/blueprint.js",
|
|
3877
|
-
"line":
|
|
3870
|
+
"line": 514,
|
|
3878
3871
|
"access": "private",
|
|
3879
3872
|
"tagname": "",
|
|
3880
3873
|
"itemtype": "method",
|
|
@@ -3895,7 +3888,7 @@
|
|
|
3895
3888
|
},
|
|
3896
3889
|
{
|
|
3897
3890
|
"file": "lib/models/blueprint.js",
|
|
3898
|
-
"line":
|
|
3891
|
+
"line": 530,
|
|
3899
3892
|
"access": "private",
|
|
3900
3893
|
"tagname": "",
|
|
3901
3894
|
"itemtype": "method",
|
|
@@ -3921,7 +3914,7 @@
|
|
|
3921
3914
|
},
|
|
3922
3915
|
{
|
|
3923
3916
|
"file": "lib/models/blueprint.js",
|
|
3924
|
-
"line":
|
|
3917
|
+
"line": 582,
|
|
3925
3918
|
"itemtype": "method",
|
|
3926
3919
|
"name": "install",
|
|
3927
3920
|
"params": [
|
|
@@ -3940,7 +3933,7 @@
|
|
|
3940
3933
|
},
|
|
3941
3934
|
{
|
|
3942
3935
|
"file": "lib/models/blueprint.js",
|
|
3943
|
-
"line":
|
|
3936
|
+
"line": 609,
|
|
3944
3937
|
"itemtype": "method",
|
|
3945
3938
|
"name": "uninstall",
|
|
3946
3939
|
"params": [
|
|
@@ -3959,7 +3952,7 @@
|
|
|
3959
3952
|
},
|
|
3960
3953
|
{
|
|
3961
3954
|
"file": "lib/models/blueprint.js",
|
|
3962
|
-
"line":
|
|
3955
|
+
"line": 631,
|
|
3963
3956
|
"description": "Hook for running operations before install.",
|
|
3964
3957
|
"itemtype": "method",
|
|
3965
3958
|
"name": "beforeInstall",
|
|
@@ -3972,7 +3965,7 @@
|
|
|
3972
3965
|
},
|
|
3973
3966
|
{
|
|
3974
3967
|
"file": "lib/models/blueprint.js",
|
|
3975
|
-
"line":
|
|
3968
|
+
"line": 638,
|
|
3976
3969
|
"description": "Hook for running operations after install.",
|
|
3977
3970
|
"itemtype": "method",
|
|
3978
3971
|
"name": "afterInstall",
|
|
@@ -3985,7 +3978,7 @@
|
|
|
3985
3978
|
},
|
|
3986
3979
|
{
|
|
3987
3980
|
"file": "lib/models/blueprint.js",
|
|
3988
|
-
"line":
|
|
3981
|
+
"line": 645,
|
|
3989
3982
|
"description": "Hook for running operations before uninstall.",
|
|
3990
3983
|
"itemtype": "method",
|
|
3991
3984
|
"name": "beforeUninstall",
|
|
@@ -3998,7 +3991,7 @@
|
|
|
3998
3991
|
},
|
|
3999
3992
|
{
|
|
4000
3993
|
"file": "lib/models/blueprint.js",
|
|
4001
|
-
"line":
|
|
3994
|
+
"line": 652,
|
|
4002
3995
|
"description": "Hook for running operations after uninstall.",
|
|
4003
3996
|
"itemtype": "method",
|
|
4004
3997
|
"name": "afterUninstall",
|
|
@@ -4011,7 +4004,7 @@
|
|
|
4011
4004
|
},
|
|
4012
4005
|
{
|
|
4013
4006
|
"file": "lib/models/blueprint.js",
|
|
4014
|
-
"line":
|
|
4007
|
+
"line": 661,
|
|
4015
4008
|
"description": "Hook for adding custom template variables.\n\nWhen the following is called on the command line:\n\n```sh\nember generate controller foo --type=array --dry-run isAdmin:true\n```\n\nThe object passed to `locals` looks like this:\n\n```js\n{\n entity: {\n name: 'foo',\n options: {\n isAdmin: true\n }\n },\n dryRun: true\n type: \"array\"\n // more keys\n}\n```\n\nThis hook must return an object or a Promise which resolves to an object.\nThe resolved object will be merged with the aforementioned default locals.",
|
|
4016
4009
|
"access": "public",
|
|
4017
4010
|
"tagname": "",
|
|
@@ -4033,7 +4026,7 @@
|
|
|
4033
4026
|
},
|
|
4034
4027
|
{
|
|
4035
4028
|
"file": "lib/models/blueprint.js",
|
|
4036
|
-
"line":
|
|
4029
|
+
"line": 696,
|
|
4037
4030
|
"description": "Hook to add additional or override existing fileMap tokens.\n\nUse `fileMapTokens` to add custom fileMap tokens for use\nin the `mapFile` method. The hook must return an object in the\nfollowing pattern:\n\n```js\n{\n __token__(options){\n // logic to determine value goes here\n return 'value';\n }\n}\n```\n\nIt will be merged with the default `fileMapTokens`, and can be used\nto override any of the default tokens.\n\nTokens are used in the files folder (see `files`), and get replaced with\nvalues when the `mapFile` method is called.",
|
|
4038
4031
|
"access": "public",
|
|
4039
4032
|
"tagname": "",
|
|
@@ -4048,7 +4041,7 @@
|
|
|
4048
4041
|
},
|
|
4049
4042
|
{
|
|
4050
4043
|
"file": "lib/models/blueprint.js",
|
|
4051
|
-
"line":
|
|
4044
|
+
"line": 724,
|
|
4052
4045
|
"access": "private",
|
|
4053
4046
|
"tagname": "",
|
|
4054
4047
|
"itemtype": "method",
|
|
@@ -4069,7 +4062,7 @@
|
|
|
4069
4062
|
},
|
|
4070
4063
|
{
|
|
4071
4064
|
"file": "lib/models/blueprint.js",
|
|
4072
|
-
"line":
|
|
4065
|
+
"line": 780,
|
|
4073
4066
|
"description": "Used to generate fileMap tokens for mapFile.",
|
|
4074
4067
|
"itemtype": "method",
|
|
4075
4068
|
"name": "generateFileMap",
|
|
@@ -4089,7 +4082,7 @@
|
|
|
4089
4082
|
},
|
|
4090
4083
|
{
|
|
4091
4084
|
"file": "lib/models/blueprint.js",
|
|
4092
|
-
"line":
|
|
4085
|
+
"line": 795,
|
|
4093
4086
|
"itemtype": "method",
|
|
4094
4087
|
"name": "buildFileInfo",
|
|
4095
4088
|
"params": [
|
|
@@ -4123,7 +4116,7 @@
|
|
|
4123
4116
|
},
|
|
4124
4117
|
{
|
|
4125
4118
|
"file": "lib/models/blueprint.js",
|
|
4126
|
-
"line":
|
|
4119
|
+
"line": 817,
|
|
4127
4120
|
"itemtype": "method",
|
|
4128
4121
|
"name": "isUpdate",
|
|
4129
4122
|
"return": {
|
|
@@ -4135,7 +4128,7 @@
|
|
|
4135
4128
|
},
|
|
4136
4129
|
{
|
|
4137
4130
|
"file": "lib/models/blueprint.js",
|
|
4138
|
-
"line":
|
|
4131
|
+
"line": 827,
|
|
4139
4132
|
"access": "private",
|
|
4140
4133
|
"tagname": "",
|
|
4141
4134
|
"itemtype": "method",
|
|
@@ -4171,7 +4164,7 @@
|
|
|
4171
4164
|
},
|
|
4172
4165
|
{
|
|
4173
4166
|
"file": "lib/models/blueprint.js",
|
|
4174
|
-
"line":
|
|
4167
|
+
"line": 842,
|
|
4175
4168
|
"description": "Add update files to ignored files or reset them",
|
|
4176
4169
|
"access": "private",
|
|
4177
4170
|
"tagname": "",
|
|
@@ -4182,7 +4175,7 @@
|
|
|
4182
4175
|
},
|
|
4183
4176
|
{
|
|
4184
4177
|
"file": "lib/models/blueprint.js",
|
|
4185
|
-
"line":
|
|
4178
|
+
"line": 855,
|
|
4186
4179
|
"access": "private",
|
|
4187
4180
|
"tagname": "",
|
|
4188
4181
|
"itemtype": "method",
|
|
@@ -4203,7 +4196,7 @@
|
|
|
4203
4196
|
},
|
|
4204
4197
|
{
|
|
4205
4198
|
"file": "lib/models/blueprint.js",
|
|
4206
|
-
"line":
|
|
4199
|
+
"line": 868,
|
|
4207
4200
|
"access": "private",
|
|
4208
4201
|
"tagname": "",
|
|
4209
4202
|
"itemtype": "method",
|
|
@@ -4225,7 +4218,7 @@
|
|
|
4225
4218
|
},
|
|
4226
4219
|
{
|
|
4227
4220
|
"file": "lib/models/blueprint.js",
|
|
4228
|
-
"line":
|
|
4221
|
+
"line": 882,
|
|
4229
4222
|
"itemtype": "method",
|
|
4230
4223
|
"name": "processFiles",
|
|
4231
4224
|
"params": [
|
|
@@ -4254,7 +4247,7 @@
|
|
|
4254
4247
|
},
|
|
4255
4248
|
{
|
|
4256
4249
|
"file": "lib/models/blueprint.js",
|
|
4257
|
-
"line":
|
|
4250
|
+
"line": 916,
|
|
4258
4251
|
"itemtype": "method",
|
|
4259
4252
|
"name": "processFilesForUninstall",
|
|
4260
4253
|
"params": [
|
|
@@ -4274,7 +4267,7 @@
|
|
|
4274
4267
|
},
|
|
4275
4268
|
{
|
|
4276
4269
|
"file": "lib/models/blueprint.js",
|
|
4277
|
-
"line":
|
|
4270
|
+
"line": 967,
|
|
4278
4271
|
"itemtype": "method",
|
|
4279
4272
|
"name": "mapFile",
|
|
4280
4273
|
"params": [
|
|
@@ -4297,7 +4290,7 @@
|
|
|
4297
4290
|
},
|
|
4298
4291
|
{
|
|
4299
4292
|
"file": "lib/models/blueprint.js",
|
|
4300
|
-
"line":
|
|
4293
|
+
"line": 984,
|
|
4301
4294
|
"description": "Looks for a __root__ token in the files folder. Must be present for\nthe blueprint to support addon tokens. The `server`, `blueprints`, and `test`",
|
|
4302
4295
|
"access": "private",
|
|
4303
4296
|
"tagname": "",
|
|
@@ -4312,7 +4305,7 @@
|
|
|
4312
4305
|
},
|
|
4313
4306
|
{
|
|
4314
4307
|
"file": "lib/models/blueprint.js",
|
|
4315
|
-
"line":
|
|
4308
|
+
"line": 996,
|
|
4316
4309
|
"access": "private",
|
|
4317
4310
|
"tagname": "",
|
|
4318
4311
|
"itemtype": "method",
|
|
@@ -4342,7 +4335,7 @@
|
|
|
4342
4335
|
},
|
|
4343
4336
|
{
|
|
4344
4337
|
"file": "lib/models/blueprint.js",
|
|
4345
|
-
"line":
|
|
4338
|
+
"line": 1026,
|
|
4346
4339
|
"access": "private",
|
|
4347
4340
|
"tagname": "",
|
|
4348
4341
|
"itemtype": "method",
|
|
@@ -4363,7 +4356,7 @@
|
|
|
4363
4356
|
},
|
|
4364
4357
|
{
|
|
4365
4358
|
"file": "lib/models/blueprint.js",
|
|
4366
|
-
"line":
|
|
4359
|
+
"line": 1059,
|
|
4367
4360
|
"description": "Used to add a package to the project's `package.json`.\n\nGenerally, this would be done from the `afterInstall` hook, to\nensure that a package that is required by a given blueprint is\navailable.",
|
|
4368
4361
|
"itemtype": "method",
|
|
4369
4362
|
"name": "addPackageToProject",
|
|
@@ -4388,7 +4381,7 @@
|
|
|
4388
4381
|
},
|
|
4389
4382
|
{
|
|
4390
4383
|
"file": "lib/models/blueprint.js",
|
|
4391
|
-
"line":
|
|
4384
|
+
"line": 1081,
|
|
4392
4385
|
"description": "Used to add multiple packages to the project's `package.json`.\n\nGenerally, this would be done from the `afterInstall` hook, to\nensure that a package that is required by a given blueprint is\navailable.\n\nExpects each array item to be an object with a `name`. Each object\nmay optionally have a `target` to specify a specific version.",
|
|
4393
4386
|
"itemtype": "method",
|
|
4394
4387
|
"name": "addPackagesToProject",
|
|
@@ -4411,7 +4404,7 @@
|
|
|
4411
4404
|
},
|
|
4412
4405
|
{
|
|
4413
4406
|
"file": "lib/models/blueprint.js",
|
|
4414
|
-
"line":
|
|
4407
|
+
"line": 1130,
|
|
4415
4408
|
"description": "Used to remove a package from the project's `package.json`.\n\nGenerally, this would be done from the `afterInstall` hook, to\nensure that any package conflicts can be resolved before the\naddon is used.",
|
|
4416
4409
|
"itemtype": "method",
|
|
4417
4410
|
"name": "removePackageFromProject",
|
|
@@ -4431,7 +4424,7 @@
|
|
|
4431
4424
|
},
|
|
4432
4425
|
{
|
|
4433
4426
|
"file": "lib/models/blueprint.js",
|
|
4434
|
-
"line":
|
|
4427
|
+
"line": 1147,
|
|
4435
4428
|
"description": "Used to remove multiple packages from the project's `package.json`.\n\nGenerally, this would be done from the `afterInstall` hook, to\nensure that any package conflicts can be resolved before the\naddon is used.\n\nExpects each array item to be an object with a `name` property.",
|
|
4436
4429
|
"itemtype": "method",
|
|
4437
4430
|
"name": "removePackagesFromProject",
|
|
@@ -4451,7 +4444,7 @@
|
|
|
4451
4444
|
},
|
|
4452
4445
|
{
|
|
4453
4446
|
"file": "lib/models/blueprint.js",
|
|
4454
|
-
"line":
|
|
4447
|
+
"line": 1188,
|
|
4455
4448
|
"description": "Used to add an addon to the project's `package.json` and run it's\n`defaultBlueprint` if it provides one.\n\nGenerally, this would be done from the `afterInstall` hook, to\nensure that a package that is required by a given blueprint is\navailable.",
|
|
4456
4449
|
"itemtype": "method",
|
|
4457
4450
|
"name": "addAddonToProject",
|
|
@@ -4471,7 +4464,7 @@
|
|
|
4471
4464
|
},
|
|
4472
4465
|
{
|
|
4473
4466
|
"file": "lib/models/blueprint.js",
|
|
4474
|
-
"line":
|
|
4467
|
+
"line": 1208,
|
|
4475
4468
|
"description": "Used to add multiple addons to the project's `package.json` and run their\n`defaultBlueprint` if they provide one.\n\nGenerally, this would be done from the `afterInstall` hook, to\nensure that a package that is required by a given blueprint is\navailable.",
|
|
4476
4469
|
"itemtype": "method",
|
|
4477
4470
|
"name": "addAddonsToProject",
|
|
@@ -4491,7 +4484,7 @@
|
|
|
4491
4484
|
},
|
|
4492
4485
|
{
|
|
4493
4486
|
"file": "lib/models/blueprint.js",
|
|
4494
|
-
"line":
|
|
4487
|
+
"line": 1268,
|
|
4495
4488
|
"description": "Used to retrieve a task with the given name. Passes the new task\nthe standard information available (like `ui`, `project`, etc).",
|
|
4496
4489
|
"itemtype": "method",
|
|
4497
4490
|
"name": "taskFor",
|
|
@@ -4508,7 +4501,7 @@
|
|
|
4508
4501
|
},
|
|
4509
4502
|
{
|
|
4510
4503
|
"file": "lib/models/blueprint.js",
|
|
4511
|
-
"line":
|
|
4504
|
+
"line": 1285,
|
|
4512
4505
|
"description": "Inserts the given content into a file. If the `contentsToInsert` string is already\npresent in the current contents, the file will not be changed unless `force` option\nis passed.\n\nIf `options.before` is specified, `contentsToInsert` will be inserted before\nthe first instance of that string. If `options.after` is specified, the\ncontents will be inserted after the first instance of that string.\nIf the string specified by options.before or options.after is not in the file,\nno change will be made.\n\nIf neither `options.before` nor `options.after` are present, `contentsToInsert`\nwill be inserted at the end of the file.\n\nExample:\n```\n// app/router.js\nRouter.map(function () {\n});\n```\n\n```\ninsertIntoFile('app/router.js', ' this.route(\"admin\");', {\n after: 'Router.map(function () {' + EOL\n}).then(function() {\n // file has been inserted into!\n});\n\n\n```\n\n```\n// app/router.js\nRouter.map(function () {\n this.route(\"admin\");\n});\n```",
|
|
4513
4506
|
"itemtype": "method",
|
|
4514
4507
|
"name": "insertIntoFile",
|
|
@@ -4538,7 +4531,7 @@
|
|
|
4538
4531
|
},
|
|
4539
4532
|
{
|
|
4540
4533
|
"file": "lib/models/blueprint.js",
|
|
4541
|
-
"line":
|
|
4534
|
+
"line": 1389,
|
|
4542
4535
|
"description": "Used to retrieve a blueprint with the given name.",
|
|
4543
4536
|
"itemtype": "method",
|
|
4544
4537
|
"name": "lookupBlueprint",
|
|
@@ -4560,7 +4553,7 @@
|
|
|
4560
4553
|
},
|
|
4561
4554
|
{
|
|
4562
4555
|
"file": "lib/models/blueprint.js",
|
|
4563
|
-
"line":
|
|
4556
|
+
"line": 1412,
|
|
4564
4557
|
"static": 1,
|
|
4565
4558
|
"itemtype": "method",
|
|
4566
4559
|
"name": "lookup",
|
|
@@ -4607,7 +4600,7 @@
|
|
|
4607
4600
|
},
|
|
4608
4601
|
{
|
|
4609
4602
|
"file": "lib/models/blueprint.js",
|
|
4610
|
-
"line":
|
|
4603
|
+
"line": 1462,
|
|
4611
4604
|
"description": "Loads a blueprint from given path.",
|
|
4612
4605
|
"static": 1,
|
|
4613
4606
|
"itemtype": "method",
|
|
@@ -4635,7 +4628,7 @@
|
|
|
4635
4628
|
},
|
|
4636
4629
|
{
|
|
4637
4630
|
"file": "lib/models/blueprint.js",
|
|
4638
|
-
"line":
|
|
4631
|
+
"line": 1490,
|
|
4639
4632
|
"static": 1,
|
|
4640
4633
|
"itemtype": "method",
|
|
4641
4634
|
"name": "list",
|
|
@@ -4665,7 +4658,7 @@
|
|
|
4665
4658
|
},
|
|
4666
4659
|
{
|
|
4667
4660
|
"file": "lib/models/blueprint.js",
|
|
4668
|
-
"line":
|
|
4661
|
+
"line": 1554,
|
|
4669
4662
|
"description": "Files that are renamed when installed into the target directory.\nThis allows including files in the blueprint that would have an effect\non another process, such as a file named `.gitignore`.\n\nThe keys are the filenames used in the files folder.\nThe values are the filenames used in the target directory.",
|
|
4670
4663
|
"static": 1,
|
|
4671
4664
|
"itemtype": "property",
|
|
@@ -4676,7 +4669,7 @@
|
|
|
4676
4669
|
},
|
|
4677
4670
|
{
|
|
4678
4671
|
"file": "lib/models/blueprint.js",
|
|
4679
|
-
"line":
|
|
4672
|
+
"line": 1569,
|
|
4680
4673
|
"static": 1,
|
|
4681
4674
|
"itemtype": "property",
|
|
4682
4675
|
"name": "ignoredFiles",
|
|
@@ -4686,7 +4679,7 @@
|
|
|
4686
4679
|
},
|
|
4687
4680
|
{
|
|
4688
4681
|
"file": "lib/models/blueprint.js",
|
|
4689
|
-
"line":
|
|
4682
|
+
"line": 1575,
|
|
4690
4683
|
"static": 1,
|
|
4691
4684
|
"itemtype": "property",
|
|
4692
4685
|
"name": "ignoredUpdateFiles",
|
|
@@ -4696,7 +4689,7 @@
|
|
|
4696
4689
|
},
|
|
4697
4690
|
{
|
|
4698
4691
|
"file": "lib/models/blueprint.js",
|
|
4699
|
-
"line":
|
|
4692
|
+
"line": 1581,
|
|
4700
4693
|
"static": 1,
|
|
4701
4694
|
"itemtype": "property",
|
|
4702
4695
|
"name": "defaultLookupPaths",
|
|
@@ -4706,7 +4699,7 @@
|
|
|
4706
4699
|
},
|
|
4707
4700
|
{
|
|
4708
4701
|
"file": "lib/models/blueprint.js",
|
|
4709
|
-
"line":
|
|
4702
|
+
"line": 1589,
|
|
4710
4703
|
"access": "private",
|
|
4711
4704
|
"tagname": "",
|
|
4712
4705
|
"itemtype": "method",
|
|
@@ -4728,7 +4721,7 @@
|
|
|
4728
4721
|
},
|
|
4729
4722
|
{
|
|
4730
4723
|
"file": "lib/models/blueprint.js",
|
|
4731
|
-
"line":
|
|
4724
|
+
"line": 1602,
|
|
4732
4725
|
"access": "private",
|
|
4733
4726
|
"tagname": "",
|
|
4734
4727
|
"itemtype": "method",
|
|
@@ -4746,7 +4739,7 @@
|
|
|
4746
4739
|
},
|
|
4747
4740
|
{
|
|
4748
4741
|
"file": "lib/models/blueprint.js",
|
|
4749
|
-
"line":
|
|
4742
|
+
"line": 1613,
|
|
4750
4743
|
"access": "private",
|
|
4751
4744
|
"tagname": "",
|
|
4752
4745
|
"itemtype": "method",
|
|
@@ -4764,7 +4757,7 @@
|
|
|
4764
4757
|
},
|
|
4765
4758
|
{
|
|
4766
4759
|
"file": "lib/models/blueprint.js",
|
|
4767
|
-
"line":
|
|
4760
|
+
"line": 1622,
|
|
4768
4761
|
"access": "private",
|
|
4769
4762
|
"tagname": "",
|
|
4770
4763
|
"itemtype": "method",
|
|
@@ -4791,7 +4784,7 @@
|
|
|
4791
4784
|
},
|
|
4792
4785
|
{
|
|
4793
4786
|
"file": "lib/models/blueprint.js",
|
|
4794
|
-
"line":
|
|
4787
|
+
"line": 1636,
|
|
4795
4788
|
"access": "private",
|
|
4796
4789
|
"tagname": "",
|
|
4797
4790
|
"itemtype": "method",
|
|
@@ -4813,7 +4806,7 @@
|
|
|
4813
4806
|
},
|
|
4814
4807
|
{
|
|
4815
4808
|
"file": "lib/models/blueprint.js",
|
|
4816
|
-
"line":
|
|
4809
|
+
"line": 1648,
|
|
4817
4810
|
"description": "Combines provided lookup paths with defaults and removes\nduplicates.",
|
|
4818
4811
|
"access": "private",
|
|
4819
4812
|
"tagname": "",
|
|
@@ -4836,7 +4829,7 @@
|
|
|
4836
4829
|
},
|
|
4837
4830
|
{
|
|
4838
4831
|
"file": "lib/models/blueprint.js",
|
|
4839
|
-
"line":
|
|
4832
|
+
"line": 1663,
|
|
4840
4833
|
"description": "Looks for a __path__ token in the files folder. Must be present for\nthe blueprint to support pod tokens.",
|
|
4841
4834
|
"access": "private",
|
|
4842
4835
|
"tagname": "",
|
|
@@ -4859,7 +4852,7 @@
|
|
|
4859
4852
|
},
|
|
4860
4853
|
{
|
|
4861
4854
|
"file": "lib/models/blueprint.js",
|
|
4862
|
-
"line":
|
|
4855
|
+
"line": 1702,
|
|
4863
4856
|
"access": "private",
|
|
4864
4857
|
"tagname": "",
|
|
4865
4858
|
"itemtype": "method",
|
|
@@ -4881,7 +4874,7 @@
|
|
|
4881
4874
|
},
|
|
4882
4875
|
{
|
|
4883
4876
|
"file": "lib/models/blueprint.js",
|
|
4884
|
-
"line":
|
|
4877
|
+
"line": 1716,
|
|
4885
4878
|
"access": "private",
|
|
4886
4879
|
"tagname": "",
|
|
4887
4880
|
"itemtype": "method",
|
|
@@ -4903,7 +4896,7 @@
|
|
|
4903
4896
|
},
|
|
4904
4897
|
{
|
|
4905
4898
|
"file": "lib/models/blueprint.js",
|
|
4906
|
-
"line":
|
|
4899
|
+
"line": 1726,
|
|
4907
4900
|
"access": "private",
|
|
4908
4901
|
"tagname": "",
|
|
4909
4902
|
"itemtype": "method",
|
|
@@ -4918,7 +4911,7 @@
|
|
|
4918
4911
|
},
|
|
4919
4912
|
{
|
|
4920
4913
|
"file": "lib/models/blueprint.js",
|
|
4921
|
-
"line":
|
|
4914
|
+
"line": 1739,
|
|
4922
4915
|
"access": "private",
|
|
4923
4916
|
"tagname": "",
|
|
4924
4917
|
"itemtype": "method",
|
|
@@ -4940,7 +4933,7 @@
|
|
|
4940
4933
|
},
|
|
4941
4934
|
{
|
|
4942
4935
|
"file": "lib/models/blueprint.js",
|
|
4943
|
-
"line":
|
|
4936
|
+
"line": 1789,
|
|
4944
4937
|
"description": "Takes a substring of a string based on byte offsets.",
|
|
4945
4938
|
"access": "private",
|
|
4946
4939
|
"tagname": "",
|
|
@@ -6328,26 +6321,6 @@
|
|
|
6328
6321
|
"class": "WindowsSymlinkChecker",
|
|
6329
6322
|
"module": "ember-cli"
|
|
6330
6323
|
},
|
|
6331
|
-
{
|
|
6332
|
-
"file": "lib/utilities/directory-for-package-name.js",
|
|
6333
|
-
"line": 5,
|
|
6334
|
-
"description": "Derive a directory name from a package name.\nTakes scoped packages into account.",
|
|
6335
|
-
"itemtype": "method",
|
|
6336
|
-
"name": "directoryForPackageName",
|
|
6337
|
-
"params": [
|
|
6338
|
-
{
|
|
6339
|
-
"name": "packageName",
|
|
6340
|
-
"description": "",
|
|
6341
|
-
"type": "String"
|
|
6342
|
-
}
|
|
6343
|
-
],
|
|
6344
|
-
"return": {
|
|
6345
|
-
"description": "Derived directory name.",
|
|
6346
|
-
"type": "String"
|
|
6347
|
-
},
|
|
6348
|
-
"class": "WindowsSymlinkChecker",
|
|
6349
|
-
"module": "ember-cli"
|
|
6350
|
-
},
|
|
6351
6324
|
{
|
|
6352
6325
|
"file": "lib/utilities/ember-app-utils.js",
|
|
6353
6326
|
"line": 8,
|