diff --git a/aio/content/examples/i18n/zipper.json b/aio/content/examples/i18n/zipper.json index 7f9c0a43cc..ecd77116fa 100644 --- a/aio/content/examples/i18n/zipper.json +++ b/aio/content/examples/i18n/zipper.json @@ -1,11 +1,9 @@ { - "files":[ + "files": [ "!dist/", "!**/*.d.ts", "!src/**/*.js", "!doc-files/**/*", "**/*.xlf" - ], - "removeSystemJsConfig": true, - "type": "i18n" + ] } diff --git a/aio/content/examples/universal/zipper.json b/aio/content/examples/universal/zipper.json index 37b42ad643..ce44927d99 100644 --- a/aio/content/examples/universal/zipper.json +++ b/aio/content/examples/universal/zipper.json @@ -1,9 +1,7 @@ { - "files":[ + "files": [ "!dist/", "!**/*.d.ts", "!**/src/**/*.js" - ], - "removeSystemJsConfig": false, - "type": "universal" + ] } diff --git a/aio/tools/example-zipper/README.md b/aio/tools/example-zipper/README.md index e4d728a661..3979c8698f 100644 --- a/aio/tools/example-zipper/README.md +++ b/aio/tools/example-zipper/README.md @@ -59,21 +59,6 @@ The problem is that not all examples have a stackblitz but they could offer a zi In those cases, you can create a `zipper.json` file with the same syntax. It will be ignored by the stackblitz tool. -## Choosing the zip "type" - -In both `stackblitz.json` and `zipper.json` you can use two extra properties for the zipper configuration: - -``` -{ - ... - "removeSystemJsConfig": true, - "type": "testing" -} -``` - -This would generate a zip for a testing application and it will also remove everything related with -SystemJS. - ## Executing the zip generation `generateZips.js` will create a zip for each `stackblitz.json` or `zipper.json` it finds.