diff --git a/extra/golden-section/deploy.factor b/extra/golden-section/deploy.factor index 318d03ee4c..3923d258f0 100644 --- a/extra/golden-section/deploy.factor +++ b/extra/golden-section/deploy.factor @@ -1,12 +1,17 @@ USING: tools.deploy.config ; V{ + { strip-io? t } + { strip-prettyprint? t } + { strip-globals? t } { strip-word-props? t } { strip-word-names? t } { strip-dictionary? t } { strip-debugger? t } + { strip-c-types? t } { deploy-math? t } { deploy-compiled? t } { deploy-io? f } { deploy-ui? t } + { "stop-after-last-window?" t } { "bundle-name" "Golden Section.app" } } diff --git a/extra/hello-ui/deploy.factor b/extra/hello-ui/deploy.factor index db728d1eda..2f346e94c6 100644 --- a/extra/hello-ui/deploy.factor +++ b/extra/hello-ui/deploy.factor @@ -1,12 +1,16 @@ USING: tools.deploy.config ; V{ + { strip-prettyprint? t } + { strip-globals? t } { strip-word-props? t } - { strip-word-names? t } + { strip-word-names? f } { strip-dictionary? t } { strip-debugger? t } + { strip-c-types? t } { deploy-math? t } { deploy-compiled? t } { deploy-io? f } { deploy-ui? t } + { "stop-after-last-window?" t } { "bundle-name" "Hello World.app" } } diff --git a/extra/hello-world/deploy.factor b/extra/hello-world/deploy.factor index 1fa0e20503..145f7ecea7 100644 --- a/extra/hello-world/deploy.factor +++ b/extra/hello-world/deploy.factor @@ -1,11 +1,15 @@ USING: tools.deploy.config ; V{ + { strip-prettyprint? t } + { strip-globals? t } { strip-word-props? t } { strip-word-names? t } { strip-dictionary? t } { strip-debugger? t } + { strip-c-types? t } { deploy-math? f } { deploy-compiled? f } { deploy-io? f } { deploy-ui? f } + { "stop-after-last-window?" t } }