diff --git a/packages/fastboot/test/fixtures/app-with-console-log/package.json b/packages/fastboot/test/fixtures/app-with-console-log/package.json index cced53b2d..d3cf12436 100644 --- a/packages/fastboot/test/fixtures/app-with-console-log/package.json +++ b/packages/fastboot/test/fixtures/app-with-console-log/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "app-with-console-log", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/app-with-dependencies/package.json b/packages/fastboot/test/fixtures/app-with-dependencies/package.json index 027feda49..d42656755 100644 --- a/packages/fastboot/test/fixtures/app-with-dependencies/package.json +++ b/packages/fastboot/test/fixtures/app-with-dependencies/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "app-with-dependencies", "dependencies": { "foo": "workspace:*" }, @@ -32,4 +34,4 @@ "moduleWhitelist": ["url", "foo"], "schemaVersion": 4 } -} \ No newline at end of file +} diff --git a/packages/fastboot/test/fixtures/app-with-multiple-config/package.json b/packages/fastboot/test/fixtures/app-with-multiple-config/package.json index d6a2327c3..3cae1b636 100644 --- a/packages/fastboot/test/fixtures/app-with-multiple-config/package.json +++ b/packages/fastboot/test/fixtures/app-with-multiple-config/package.json @@ -1 +1,4 @@ -{"dependencies":{},"fastboot":{"appName":"app-with-multiple-configs","config":{"app-with-multiple-configs":{"APP":{"autoboot":false,"name":"app-with-multiple-configs","version":"0.0.0+b0fbd701"},"EmberENV":{"EXTEND_PROTOTYPES":{"Date":false},"FEATURES":{}},"environment":"development","exportApplicationGlobal":true,"locationType":"auto","modulePrefix":"app-with-multiple-configs","rootURL":"/"},"foo":"bar"},"manifest":{"appFiles":["assets/app-with-multiple-configs.js","assets/app-with-multiple-configs-fastboot.js","ember-fastboot-build-example/bar.js"],"htmlFile":"index.html","vendorFiles":["ember-fastboot-build-example/foo.js","assets/vendor.js"]},"moduleWhitelist":[],"schemaVersion":3}} \ No newline at end of file +{ + "private": true, + "name": "app-with-multiple-configs", + "dependencies":{},"fastboot":{"appName":"app-with-multiple-configs","config":{"app-with-multiple-configs":{"APP":{"autoboot":false,"name":"app-with-multiple-configs","version":"0.0.0+b0fbd701"},"EmberENV":{"EXTEND_PROTOTYPES":{"Date":false},"FEATURES":{}},"environment":"development","exportApplicationGlobal":true,"locationType":"auto","modulePrefix":"app-with-multiple-configs","rootURL":"/"},"foo":"bar"},"manifest":{"appFiles":["assets/app-with-multiple-configs.js","assets/app-with-multiple-configs-fastboot.js","ember-fastboot-build-example/bar.js"],"htmlFile":"index.html","vendorFiles":["ember-fastboot-build-example/foo.js","assets/vendor.js"]},"moduleWhitelist":[],"schemaVersion":3}} diff --git a/packages/fastboot/test/fixtures/app-with-prototype-mutations/package.json b/packages/fastboot/test/fixtures/app-with-prototype-mutations/package.json index cee30837e..1ac346792 100644 --- a/packages/fastboot/test/fixtures/app-with-prototype-mutations/package.json +++ b/packages/fastboot/test/fixtures/app-with-prototype-mutations/package.json @@ -1 +1,4 @@ -{"dependencies":{},"fastboot":{"appName":"app-with-mutable-prototype","config":{"app-with-mutable-prototype":{"APP":{"autoboot":false},"EmberENV":{"EXTEND_PROTOTYPES":{"Date":false},"FEATURES":{},"_APPLICATION_TEMPLATE_WRAPPER":false,"_DEFAULT_ASYNC_OBSERVERS":true,"_JQUERY_INTEGRATION":false,"_TEMPLATE_ONLY_GLIMMER_COMPONENTS":true},"environment":"development","locationType":"auto","modulePrefix":"app-with-mutable-prototype","rootURL":"/"}},"manifest":{"appFiles":["assets/app-with-mutable-prototype.js","assets/app-with-mutable-prototype-fastboot.js"],"htmlFile":"index.html","vendorFiles":["assets/vendor.js"]},"moduleWhitelist":[],"schemaVersion":3}} \ No newline at end of file +{ + "private": true, + "name": "app-with-prototype-mutations", + "dependencies":{},"fastboot":{"appName":"app-with-mutable-prototype","config":{"app-with-mutable-prototype":{"APP":{"autoboot":false},"EmberENV":{"EXTEND_PROTOTYPES":{"Date":false},"FEATURES":{},"_APPLICATION_TEMPLATE_WRAPPER":false,"_DEFAULT_ASYNC_OBSERVERS":true,"_JQUERY_INTEGRATION":false,"_TEMPLATE_ONLY_GLIMMER_COMPONENTS":true},"environment":"development","locationType":"auto","modulePrefix":"app-with-mutable-prototype","rootURL":"/"}},"manifest":{"appFiles":["assets/app-with-mutable-prototype.js","assets/app-with-mutable-prototype-fastboot.js"],"htmlFile":"index.html","vendorFiles":["assets/vendor.js"]},"moduleWhitelist":[],"schemaVersion":3}} diff --git a/packages/fastboot/test/fixtures/basic-app/package.json b/packages/fastboot/test/fixtures/basic-app/package.json index cced53b2d..5c02c074a 100644 --- a/packages/fastboot/test/fixtures/basic-app/package.json +++ b/packages/fastboot/test/fixtures/basic-app/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "basic-app", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/boot-time-failing-app/package.json b/packages/fastboot/test/fixtures/boot-time-failing-app/package.json index cced53b2d..ef97d3264 100644 --- a/packages/fastboot/test/fixtures/boot-time-failing-app/package.json +++ b/packages/fastboot/test/fixtures/boot-time-failing-app/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "boot-time-failing-app", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/config-app/package.json b/packages/fastboot/test/fixtures/config-app/package.json index c1d10f7c6..4309ed859 100644 --- a/packages/fastboot/test/fixtures/config-app/package.json +++ b/packages/fastboot/test/fixtures/config-app/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "config-app", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/config-not-in-meta-app/package.json b/packages/fastboot/test/fixtures/config-not-in-meta-app/package.json index 3dd327aa8..9c9e165db 100644 --- a/packages/fastboot/test/fixtures/config-not-in-meta-app/package.json +++ b/packages/fastboot/test/fixtures/config-not-in-meta-app/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "custom-not-in-meta-app", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/custom-body-attrs-with-no-default-classes/package.json b/packages/fastboot/test/fixtures/custom-body-attrs-with-no-default-classes/package.json index cced53b2d..29ea7d769 100644 --- a/packages/fastboot/test/fixtures/custom-body-attrs-with-no-default-classes/package.json +++ b/packages/fastboot/test/fixtures/custom-body-attrs-with-no-default-classes/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "custom-body-attrs-with-no-default-classes", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/custom-body-attrs/package.json b/packages/fastboot/test/fixtures/custom-body-attrs/package.json index cced53b2d..584a8a665 100644 --- a/packages/fastboot/test/fixtures/custom-body-attrs/package.json +++ b/packages/fastboot/test/fixtures/custom-body-attrs/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "custom-body-attrs", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/custom-html-attrs-with-no-default-classes/package.json b/packages/fastboot/test/fixtures/custom-html-attrs-with-no-default-classes/package.json index cced53b2d..49b83dd6f 100644 --- a/packages/fastboot/test/fixtures/custom-html-attrs-with-no-default-classes/package.json +++ b/packages/fastboot/test/fixtures/custom-html-attrs-with-no-default-classes/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "custom-html-attrs-with-no-default-classes", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/custom-html-attrs/package.json b/packages/fastboot/test/fixtures/custom-html-attrs/package.json index cced53b2d..93c5754c9 100644 --- a/packages/fastboot/test/fixtures/custom-html-attrs/package.json +++ b/packages/fastboot/test/fixtures/custom-html-attrs/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "custom-html-attrs", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/custom-sandbox/package.json b/packages/fastboot/test/fixtures/custom-sandbox/package.json index b96528178..103c65a55 100644 --- a/packages/fastboot/test/fixtures/custom-sandbox/package.json +++ b/packages/fastboot/test/fixtures/custom-sandbox/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "custom-sandbox", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/higher-schema-version/package.json b/packages/fastboot/test/fixtures/higher-schema-version/package.json index 93e18418c..479c94b3d 100644 --- a/packages/fastboot/test/fixtures/higher-schema-version/package.json +++ b/packages/fastboot/test/fixtures/higher-schema-version/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "higher-schema-version", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/hot-swap-app/package.json b/packages/fastboot/test/fixtures/hot-swap-app/package.json index cced53b2d..447b0b7f3 100644 --- a/packages/fastboot/test/fixtures/hot-swap-app/package.json +++ b/packages/fastboot/test/fixtures/hot-swap-app/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "hot-swap-app", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/multiple-app-files/package.json b/packages/fastboot/test/fixtures/multiple-app-files/package.json index 533420d6a..92afabeb7 100644 --- a/packages/fastboot/test/fixtures/multiple-app-files/package.json +++ b/packages/fastboot/test/fixtures/multiple-app-files/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "multiple-app-files", "dependencies": {}, "fastboot": { "moduleWhitelist": [], diff --git a/packages/fastboot/test/fixtures/rejected-promise/package.json b/packages/fastboot/test/fixtures/rejected-promise/package.json index 2e879aaae..f044a59d9 100644 --- a/packages/fastboot/test/fixtures/rejected-promise/package.json +++ b/packages/fastboot/test/fixtures/rejected-promise/package.json @@ -1,4 +1,6 @@ { + "private": true, + "name": "rejected-promise", "fastboot": { "moduleWhitelist": [], "schemaVersion": 1,