gina 0.1.1-alpha.99 → 0.1.2-alpha.1
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/LICENSE +1 -1
- package/README-4Contributors.md +30 -0
- package/README.md +125 -39
- package/bin/cli +130 -41
- package/bin/cli-debug +46 -15
- package/bin/cmd +63 -41
- package/bin/gina +57 -49
- package/framework/{v0.1.1-alpha.99/lib/inherits → v0.1.2-alpha.1}/LICENSE +1 -1
- package/framework/v0.1.2-alpha.1/VERSION +1 -0
- package/framework/{v0.1.1-alpha.99/core/asset/js/plugin/readme.md → v0.1.2-alpha.1/core/asset/plugin/README.md} +34 -12
- package/framework/v0.1.2-alpha.1/core/asset/plugin/dist/vendor/gina/css/gina.min.css +1 -0
- package/framework/v0.1.2-alpha.1/core/asset/plugin/dist/vendor/gina/css/gina.min.css.map +1 -0
- package/framework/v0.1.2-alpha.1/core/asset/plugin/dist/vendor/gina/html/toolbar.html +251 -0
- package/framework/{v0.1.1-alpha.99/core/asset/js/plugin/dist → v0.1.2-alpha.1/core/asset/plugin/dist/vendor/gina/js}/gina.js +4588 -3416
- package/framework/v0.1.2-alpha.1/core/asset/plugin/dist/vendor/gina/js/gina.min.js +765 -0
- package/framework/v0.1.2-alpha.1/core/asset/plugin/dist/vendor/gina/js/gina.min.js.map +8 -0
- package/framework/v0.1.2-alpha.1/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js +7 -0
- package/framework/v0.1.2-alpha.1/core/asset/plugin/dist/vendor/gina/js/gina.onload.min.js.map +8 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/config.js +315 -131
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/connectors/couchbase/index.js +460 -274
- package/framework/v0.1.2-alpha.1/core/connectors/couchbase/lib/connector.js +22 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/connectors/couchbase/lib/connector.v2.js +51 -51
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/connectors/couchbase/lib/connector.v3.js +51 -51
- package/framework/v0.1.2-alpha.1/core/connectors/couchbase/lib/connector.v4.js +384 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/connectors/couchbase/lib/n1ql.js +3 -2
- package/framework/v0.1.2-alpha.1/core/connectors/couchbase/lib/session-store.js +22 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/connectors/couchbase/lib/session-store.v3.js +12 -12
- package/framework/v0.1.2-alpha.1/core/connectors/couchbase/lib/session-store.v4.js +361 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/controller/controller.js +1351 -902
- package/framework/v0.1.2-alpha.1/core/controller/index.js +23 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/dev/index.js +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/dev/lib/class.js +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/dev/lib/factory.js +2 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/gna.js +48 -24
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/locales/README.md +5 -0
- package/framework/v0.1.2-alpha.1/core/locales/dist/region/en.json +5727 -0
- package/framework/v0.1.2-alpha.1/core/locales/dist/region/fr.json +11452 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/locales/index.js +2 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/locales/src/make.js +39 -41
- package/framework/v0.1.2-alpha.1/core/locales/src/resources/region.mapping.json +43 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/model/entity.js +87 -67
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/model/index.js +16 -16
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/model/template/entityFactory.js +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/model/template/index.js +17 -15
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/index.js +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/file/package.json +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/intl/package.json +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/intl/src/main.js +5 -5
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/storage/package.json +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/storage/src/main.js +6 -5
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/validator/package.json +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/validator/src/form-validator.js +404 -300
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/validator/src/main.js +1384 -1314
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/router.js +221 -122
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/server.express.js +69 -65
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/server.isaac.js +274 -180
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/server.js +710 -615
- package/framework/v0.1.2-alpha.1/core/template/boilerplate/bundle/config/settings.json +12 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle/config/settings.server.json +4 -4
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle/config/templates.json +4 -4
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle/controllers/controller.content.js +1 -1
- package/framework/v0.1.2-alpha.1/core/template/boilerplate/bundle/controllers/setup.js +111 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle/index.js +13 -1
- package/framework/v0.1.2-alpha.1/core/template/boilerplate/bundle_templates/html/content/homepage.html +8 -0
- package/framework/v0.1.2-alpha.1/core/template/boilerplate/bundle_templates/html/includes/error-msg-noscript.html +11 -0
- package/framework/v0.1.2-alpha.1/core/template/boilerplate/bundle_templates/html/includes/error-msg-outdated-browser.html +8 -0
- package/framework/{v0.1.1-alpha.99/core/template/boilerplate/bundle_templates/html/layout → v0.1.2-alpha.1/core/template/boilerplate/bundle_templates/html/layouts}/main.html +10 -3
- package/framework/v0.1.2-alpha.1/core/template/command/gina.bat.tpl +8 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/command/gina.tpl +4 -4
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/conf/env.json +12 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/conf/manifest.json +2 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/conf/package.json +2 -2
- package/framework/v0.1.2-alpha.1/core/template/conf/statics.json +12 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/conf/templates.json +9 -9
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/console.js +3 -3
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/context.js +233 -75
- package/framework/v0.1.2-alpha.1/helpers/data/LICENSE +9 -0
- package/framework/v0.1.2-alpha.1/helpers/data/README.md +12 -0
- package/framework/v0.1.2-alpha.1/helpers/data/package.json +20 -0
- package/framework/v0.1.2-alpha.1/helpers/data/src/main.js +295 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/dateFormat.js +9 -7
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/index.js +13 -8
- package/framework/v0.1.2-alpha.1/helpers/json/LICENSE +9 -0
- package/framework/v0.1.2-alpha.1/helpers/json/README.md +12 -0
- package/framework/{v0.1.1-alpha.99/helpers/plugins → v0.1.2-alpha.1/helpers/json}/package.json +2 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/json/src/main.js +33 -28
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/path.js +97 -22
- package/framework/{v0.1.1-alpha.99/helpers/json → v0.1.2-alpha.1/helpers/plugins}/package.json +2 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/plugins/src/api-error.js +23 -23
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/plugins/src/main.js +3 -3
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/prototypes.js +46 -38
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/text.js +2 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/archiver/package.json +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/archiver/src/dep/jszip.min.js +3 -3
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/archiver/src/main.js +183 -168
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/aliases.json +4 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/add.js +84 -28
- package/framework/v0.1.2-alpha.1/lib/cmd/bundle/arguments.json +8 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/help.txt +4 -2
- package/framework/v0.1.2-alpha.1/lib/cmd/bundle/list.js +175 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/remove.js +39 -27
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/restart.js +14 -8
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/start.js +283 -49
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/stop.js +93 -74
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/env/add.js +87 -49
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/env/list.js +26 -4
- package/framework/{v0.1.1-alpha.99/lib/cmd/scope → v0.1.2-alpha.1/lib/cmd/env}/remove.js +29 -24
- package/framework/v0.1.2-alpha.1/lib/cmd/env/use.js +106 -0
- package/framework/v0.1.2-alpha.1/lib/cmd/framework/build.js +93 -0
- package/framework/v0.1.2-alpha.1/lib/cmd/framework/init.js +932 -0
- package/framework/v0.1.2-alpha.1/lib/cmd/framework/link-node-modules.js +123 -0
- package/framework/v0.1.2-alpha.1/lib/cmd/framework/link.js +132 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/open.js +25 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/restart.js +78 -26
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/set.js +120 -40
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/start.js +49 -20
- package/framework/v0.1.2-alpha.1/lib/cmd/framework/status.js +144 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/stop.js +64 -31
- package/framework/v0.1.2-alpha.1/lib/cmd/framework/tail.js +303 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/version.js +19 -4
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/helper.js +357 -53
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/index.js +23 -23
- package/framework/v0.1.2-alpha.1/lib/cmd/port/inc/scan.js +142 -0
- package/framework/v0.1.2-alpha.1/lib/cmd/port/list.js +464 -0
- package/framework/v0.1.2-alpha.1/lib/cmd/port/reset.js +417 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/add.js +344 -157
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/arguments.json +2 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/build.js +28 -28
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/help.txt +7 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/list.js +22 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/remove.js +19 -17
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/rename.js +11 -11
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/protocol/set.js +260 -211
- package/framework/v0.1.2-alpha.1/lib/cmd/scope/add.js +129 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/scope/help.txt +4 -4
- package/framework/{v0.1.1-alpha.99/lib/cmd/env/use.js → v0.1.2-alpha.1/lib/cmd/scope/link-production.js} +22 -21
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/scope/list.js +34 -11
- package/framework/v0.1.2-alpha.1/lib/cmd/scope/remove.js +122 -0
- package/framework/v0.1.2-alpha.1/lib/cmd/scope/use.js +68 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/view/add.js +35 -10
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/collection/package.json +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/collection/src/main.js +247 -244
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/config.js +33 -31
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cron/package.json +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cron/src/main.js +16 -11
- package/framework/v0.1.2-alpha.1/lib/domain/LICENSE +9 -0
- package/framework/v0.1.2-alpha.1/lib/domain/README.md +46 -0
- package/framework/v0.1.2-alpha.1/lib/domain/dist/public_suffix_list.dat +14186 -0
- package/framework/v0.1.2-alpha.1/lib/domain/package.json +20 -0
- package/framework/v0.1.2-alpha.1/lib/domain/src/main.js +442 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/generator/index.js +5 -5
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/index.js +3 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1/lib/inherits}/LICENSE +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/inherits/README.md +2 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/inherits/package.json +3 -4
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/inherits/src/main.js +3 -3
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/package.json +2 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/src/containers/default/index.js +15 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/src/containers/file/index.js +109 -14
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/src/containers/mq/index.js +12 -3
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/src/containers/mq/listener.js +29 -21
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/src/containers/mq/speaker.js +33 -4
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/src/helper.js +22 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/src/main.js +36 -9
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/math/index.js +9 -9
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/merge/README.md +2 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/merge/package.json +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/merge/src/main.js +118 -91
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/model.js +10 -10
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/proc.js +92 -49
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/routing/package.json +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/routing/src/main.js +377 -420
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/session-store.js +13 -7
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/shell.js +3 -3
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/swig-filters/package.json +1 -1
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/swig-filters/src/main.js +140 -119
- package/framework/v0.1.2-alpha.1/lib/url/README.md +0 -0
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/validator.js +2 -2
- package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/package.json +1 -1
- package/package.json +10 -10
- package/resources/home/main.json +39 -5
- package/resources/home/settings.json +8 -0
- package/resources/package.json.template +1 -1
- package/script/lib.js +0 -0
- package/script/post_install.js +179 -89
- package/script/pre_install.js +95 -12
- package/services/.gna/67fdf1b224a2ed5597e63d4b64283834468e05e3.txt +0 -0
- package/services/.gna/arch +1 -0
- package/services/.gna/locals.json +14 -0
- package/services/.gna/platform +1 -0
- package/services/configure +6 -0
- package/services/env.json +18 -0
- package/services/manifest.json +30 -0
- package/services/package.json +11 -0
- package/services/src/proxy/config/app.json +6 -0
- package/services/src/proxy/config/routing.json +11 -0
- package/services/src/proxy/config/settings.json +9 -0
- package/services/src/proxy/config/settings.server.json +31 -0
- package/services/src/proxy/config/statics.json +3 -0
- package/services/src/proxy/controllers/controller.content.js +58 -0
- package/services/src/proxy/controllers/controller.js +30 -0
- package/{framework/v0.1.1-alpha.99/core/template/boilerplate/bundle → services/src/proxy}/controllers/setup.js +14 -14
- package/services/src/proxy/index.js +31 -0
- package/services/src/proxy/lib/domain/README.md +48 -0
- package/services/src/proxy/lib/domain/src/config/public_suffix_list.dat +14186 -0
- package/services/src/toolbar/config/app.json +6 -0
- package/services/src/toolbar/config/routing.json +11 -0
- package/{framework/v0.1.1-alpha.99/core/template/boilerplate/bundle → services/src/toolbar}/config/settings.json +0 -0
- package/services/src/toolbar/config/settings.server.json +30 -0
- package/services/src/toolbar/controllers/controller.content.js +39 -0
- package/services/src/toolbar/controllers/controller.js +30 -0
- package/services/src/toolbar/controllers/setup.js +111 -0
- package/services/src/toolbar/index.js +43 -0
- package/utils/helper.js +25 -156
- package/utils/prototypes.js +9 -9
- package/utils/prototypes.json_clone.js +70 -37
- package/framework/v0.1.1-alpha.99/VERSION +0 -1
- package/framework/v0.1.1-alpha.99/core/asset/js/plugin/dist/gina.js.map +0 -56
- package/framework/v0.1.1-alpha.99/core/asset/js/plugin/dist/gina.min.css +0 -1
- package/framework/v0.1.1-alpha.99/core/asset/js/plugin/dist/gina.min.css.map +0 -1
- package/framework/v0.1.1-alpha.99/core/asset/js/plugin/dist/gina.min.js +0 -736
- package/framework/v0.1.1-alpha.99/core/asset/js/plugin/dist/gina.min.js.map +0 -56
- package/framework/v0.1.1-alpha.99/core/asset/js/plugin/dist/gina.onload.min.js +0 -5
- package/framework/v0.1.1-alpha.99/core/asset/js/plugin/dist/gina.onload.min.js.map +0 -8
- package/framework/v0.1.1-alpha.99/core/connectors/couchbase/lib/connector.js +0 -20
- package/framework/v0.1.1-alpha.99/core/connectors/couchbase/lib/session-store.js +0 -21
- package/framework/v0.1.1-alpha.99/core/controller/index.js +0 -27
- package/framework/v0.1.1-alpha.99/core/locales/dist/region/en.json +0 -9492
- package/framework/v0.1.1-alpha.99/core/locales/dist/region/fr.json +0 -9492
- package/framework/v0.1.1-alpha.99/core/locales/src/resources/region.mapping.json +0 -28
- package/framework/v0.1.1-alpha.99/core/template/boilerplate/bundle_templates/html/homepage.html +0 -4
- package/framework/v0.1.1-alpha.99/core/template/conf/statics.json +0 -10
- package/framework/v0.1.1-alpha.99/lib/cmd/bundle/arguments.json +0 -4
- package/framework/v0.1.1-alpha.99/lib/cmd/bundle/list.js +0 -129
- package/framework/v0.1.1-alpha.99/lib/cmd/env/remove.js +0 -150
- package/framework/v0.1.1-alpha.99/lib/cmd/framework/init.js +0 -541
- package/framework/v0.1.1-alpha.99/lib/cmd/framework/status.js +0 -72
- package/framework/v0.1.1-alpha.99/lib/cmd/framework/tail.js +0 -184
- package/framework/v0.1.1-alpha.99/lib/cmd/port/inc/scan.js +0 -108
- package/framework/v0.1.1-alpha.99/lib/cmd/port/list.js +0 -176
- package/framework/v0.1.1-alpha.99/lib/cmd/scope/set.js +0 -57
- package/framework/v0.1.1-alpha.99/lib/cmd/scope/unset.js +0 -44
- package/framework/v0.1.1-alpha.99/lib/cmd/scope/use.js +0 -79
- package/script/post_publish.js +0 -185
- package/script/prepare_version.js +0 -552
- /package/{framework/v0.1.1-alpha.99/core/template/command/gina.bat.tpl → bin/gina.bat} +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/AUTHORS +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/asset/html/nolayout.html +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/asset/html/static.html +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/asset/img/android-chrome-192x192.png +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/asset/img/android-chrome-512x512.png +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/asset/img/apple-touch-icon.png +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/asset/img/favicon-16x16.png +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/asset/img/favicon-32x32.png +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/asset/img/favicon.ico +0 -0
- /package/framework/{v0.1.1-alpha.99/core/asset/js → v0.1.2-alpha.1/core/asset}/plugin/uuid.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/connectors/couchbase/lib/session-store.v2.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/controller/controller.framework.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/.travis.yml +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/LICENSE +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/deps/encoding/encoding-indexes.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/deps/encoding/encoding.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/lib/main.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/lib/types/multipart.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/lib/types/urlencoded.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/lib/utils.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/package.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/swig-client/swig-2.0.0.min.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/dev/lib/tools.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/locales/currency.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/locales/dist/language/en.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/locales/dist/language/fr.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/locales/src/resources/currency.csv +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/locales/src/resources/region.csv +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/mime.types +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/file/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/file/build.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/intl/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/intl/build.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/storage/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/storage/build.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/validator/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/plugins/lib/validator/build.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/status.codes +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle/config/app.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle/config/routing.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle/controllers/controller.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle_namespace/controllers/controller.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle_public/css/default.css +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle_public/css/vendor/readme.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle_public/favicon.ico +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle_public/js/vendor/readme.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle_public/readme.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/boilerplate/bundle_templates/handlers/main.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/conf/settings.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/error/client/json/401.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/error/client/json/403.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/error/client/json/404.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/error/server/html/50x.html +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/error/server/json/500.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/error/server/json/503.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/template/extensions/logger/config.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/plugins/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/helpers/task.js +0 -0
- /package/framework/{v0.1.1-alpha.99/helpers/json → v0.1.2-alpha.1/lib/archiver}/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/archiver/build.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/copy.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/cp.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/help.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/rename.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/rm.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/bundle/status.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/env/get.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/env/help.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/env/help.txt +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/env/link-dev.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/env/rm.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/env/set.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/env/unset.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/dot.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/get.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/help.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/help.txt +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/msg.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/framework/update.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/gina-dev.1.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/gina-framework.1.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/gina.1.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/msg.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/port/help.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/port/help.txt +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/port/set.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/help.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/import.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/move.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/restart.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/rm.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/start.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/status.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/project/stop.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/protocol/help.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/protocol/help.txt +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/protocol/list.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/scope/help.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/scope/link-local.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cmd/scope/rm.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/collection/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/collection/build.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/cron/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99/lib/archiver/README.md → v0.1.2-alpha.1/lib/domain/exemples/backend.js} +0 -0
- /package/framework/{v0.1.1-alpha.99/lib/routing/README.md → v0.1.2-alpha.1/lib/domain/exemples/frontend.html} +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/inherits/example/inheriting_eventemitter.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/inherits/example/protected_inheritance.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/inherits/example/simple_inheritance.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/inherits/example/super_attribute_overridden_by_child_on_init.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/src/containers/file/lib/logrotator/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/logger/src/containers/file/lib/logrotator/index.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/merge/example/merge.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/merge/example/merge_2_literal objects.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/merge/example/merge_and_preserve_first.js +0 -0
- /package/framework/{v0.1.1-alpha.99/lib/swig-filters → v0.1.2-alpha.1/lib/routing}/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/routing/build.json +0 -0
- /package/framework/{v0.1.1-alpha.99/lib/url → v0.1.2-alpha.1/lib/swig-filters}/README.md +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/url/index.js +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/url/mocks.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/url/routing.json +0 -0
- /package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/lib/url/test.js +0 -0
|
@@ -1,552 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This file is part of the gina package.
|
|
3
|
-
* Copyright (c) 2009-2022 Rhinostone <contact@gina.io>
|
|
4
|
-
*
|
|
5
|
-
* For the full copyright and license information, please view the LICENSE
|
|
6
|
-
* file that was distributed with this source code.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
//Imports.
|
|
10
|
-
var fs = require('fs');
|
|
11
|
-
var util = require('util');
|
|
12
|
-
var promisify = util.promisify;
|
|
13
|
-
const { execSync } = require('child_process');
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
var scriptPath = __dirname;
|
|
17
|
-
var ginaPath = (scriptPath.replace(/\\/g, '/')).replace('/script', '');
|
|
18
|
-
var help = require(ginaPath + '/utils/helper.js');
|
|
19
|
-
var pack = ginaPath + '/package.json';
|
|
20
|
-
pack = (isWin32()) ? pack.replace(/\//g, '\\') : pack;
|
|
21
|
-
|
|
22
|
-
var helpers = null;
|
|
23
|
-
var lib = null;
|
|
24
|
-
/**
|
|
25
|
-
* PrepareVersion constructor
|
|
26
|
-
*
|
|
27
|
-
* NB.:
|
|
28
|
-
* This script can only be executed on Mac OS X or on Linux distributions
|
|
29
|
-
* It will:
|
|
30
|
-
* - commit & push all modifications to the appropriate branch
|
|
31
|
-
* - create if needed a new branch for the new version & remotely push to this new branch
|
|
32
|
-
* - update local default version with the new one
|
|
33
|
-
*
|
|
34
|
-
* if you need to test, go to gina main folder
|
|
35
|
-
* $ node --inspect-brk=5858 ./script/prepare_version.js -g
|
|
36
|
-
* or if you are calling `npm publish` or `npm publish --dry-run`
|
|
37
|
-
* $ node --inspect-brk=5858 /usr/local/bin/npm publish --dry-run
|
|
38
|
-
*
|
|
39
|
-
* @constructor
|
|
40
|
-
* */
|
|
41
|
-
function PrepareVersion() {
|
|
42
|
-
var self = {
|
|
43
|
-
isWin32: isWin32(),
|
|
44
|
-
git : {
|
|
45
|
-
tag: 'latest',
|
|
46
|
-
msg: null
|
|
47
|
-
},
|
|
48
|
-
isGitPushNeeded : false
|
|
49
|
-
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
var configure = function() {
|
|
53
|
-
// TODO - handle windows case
|
|
54
|
-
if ( /^true$/i.test(isWin32()) ) {
|
|
55
|
-
throw new Error('Windows in not yet fully supported. Thank you for your patience');
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
// Overriding thru passed arguments
|
|
59
|
-
var args = process.argv, i = 0, len = args.length;
|
|
60
|
-
for (; i < len; ++i) {
|
|
61
|
-
if ( /^\-\-tag/.test(args[i]) ) {
|
|
62
|
-
var tag = args[i].split(/\=/)[1];
|
|
63
|
-
if ( tag != self.git.tag) {
|
|
64
|
-
self.git.tag = tag;
|
|
65
|
-
self.isGitPushNeeded = ( typeof(process.env.npm_config_dry_run) != 'undefined' ) ? false : true
|
|
66
|
-
}
|
|
67
|
-
continue;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
if ( /^(\-m|\-\-message)$/.test(args[i]) ) {
|
|
71
|
-
var m = args[i];
|
|
72
|
-
if (/^(.*)\=/.test(m)) {
|
|
73
|
-
m = m.split(/\=/)[1]
|
|
74
|
-
}
|
|
75
|
-
self.git.msg = m.replace(/^(\-m|\-\-message)/g, '').replace(/(\"|\')/g, '');
|
|
76
|
-
continue;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
self.gina = __dirname +'/..';
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
var init = function() {
|
|
84
|
-
configure();
|
|
85
|
-
|
|
86
|
-
begin(0);
|
|
87
|
-
};
|
|
88
|
-
|
|
89
|
-
/**
|
|
90
|
-
* Bebin - Will run checking tasks in order of declaration
|
|
91
|
-
* */
|
|
92
|
-
var begin = async function(i) {
|
|
93
|
-
//console.debug('i is ', i);
|
|
94
|
-
var n = 0, funct = null, functName = null;
|
|
95
|
-
for (let t in self) {
|
|
96
|
-
if ( typeof(self[t]) == 'function') {
|
|
97
|
-
if (n == i){
|
|
98
|
-
//let func = 'self.' + t + '()';
|
|
99
|
-
let func = 'self.' + t;
|
|
100
|
-
console.debug('Running [ ' + func + '() ]');
|
|
101
|
-
funct = func;
|
|
102
|
-
functName = t;
|
|
103
|
-
break;
|
|
104
|
-
}
|
|
105
|
-
n++;
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// to handle sync vs async to allow execution in order of declaration
|
|
110
|
-
if (funct) {
|
|
111
|
-
eval('async function on'+functName+'(){ await promisify('+ funct + ')().catch(function(e){ console.error(e.toString()); process.exit(-1);}).then(function(){ begin('+(i+1)+')});}; on'+functName+'();'); // jshint ignore:line
|
|
112
|
-
} else {
|
|
113
|
-
process.exit(0);
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
self.getSelectedVersion = async function(done) {
|
|
119
|
-
var homeDir = getUserHome() || null;
|
|
120
|
-
|
|
121
|
-
if (!homeDir) {
|
|
122
|
-
return done(new Error('No $HOME path found !'))
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
var ginaHomeDir = homeDir.replace(/\n/g, '') + '/.gina';
|
|
126
|
-
setEnvVar('GINA_HOMEDIR', ginaHomeDir);
|
|
127
|
-
|
|
128
|
-
console.debug('GINA_HOMEDIR: ', ginaHomeDir);
|
|
129
|
-
console.debug('isWin32: ', isWin32());
|
|
130
|
-
|
|
131
|
-
var mainConfigPath = ginaHomeDir +'/main.json';
|
|
132
|
-
var mainConfig = require(mainConfigPath);
|
|
133
|
-
var package = require(pack);
|
|
134
|
-
var selectedVersion = mainConfig.def_framework.replace(/^v/, '');
|
|
135
|
-
self.selectedVersion = selectedVersion;
|
|
136
|
-
var targetedVersion = package.version.replace(/^v/, '');
|
|
137
|
-
self.targetedVersion = targetedVersion;
|
|
138
|
-
|
|
139
|
-
console.debug('selected version : ', selectedVersion);
|
|
140
|
-
console.debug('targeted version : ', targetedVersion);
|
|
141
|
-
|
|
142
|
-
// setting up requirements
|
|
143
|
-
var shortVersion = selectedVersion.split('.');
|
|
144
|
-
shortVersion.splice(2);
|
|
145
|
-
shortVersion = shortVersion.join('.');
|
|
146
|
-
var settingsConfigPath = ginaHomeDir+'/'+shortVersion+'/settings.json';
|
|
147
|
-
var settingsConfig = require(settingsConfigPath);
|
|
148
|
-
var ginaPath = settingsConfig.dir;
|
|
149
|
-
self.ginaPath = ginaPath;
|
|
150
|
-
|
|
151
|
-
var frameworkPath = ginaPath +'/framework/v'+selectedVersion;
|
|
152
|
-
self.frameworkPath = frameworkPath;
|
|
153
|
-
helpers = require(frameworkPath +'/helpers');
|
|
154
|
-
lib = require(frameworkPath +'/lib');
|
|
155
|
-
|
|
156
|
-
// update selected version & requirements
|
|
157
|
-
shortVersion = targetedVersion.split('.');
|
|
158
|
-
shortVersion.splice(2);
|
|
159
|
-
shortVersion = shortVersion.join('.');
|
|
160
|
-
if ( typeof(mainConfig.frameworks[shortVersion]) == 'undefined' ) {
|
|
161
|
-
mainConfig.frameworks[shortVersion] = [];
|
|
162
|
-
// create settings.json for the new version
|
|
163
|
-
|
|
164
|
-
}
|
|
165
|
-
if ( mainConfig.frameworks[shortVersion].indexOf(targetedVersion) < 0 ) {
|
|
166
|
-
mainConfig.frameworks[shortVersion].push(targetedVersion)
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
settingsConfigPath = ginaHomeDir+'/'+shortVersion+'/settings.json';
|
|
171
|
-
settingsConfig = require(settingsConfigPath);
|
|
172
|
-
|
|
173
|
-
// setting def_framework
|
|
174
|
-
mainConfig.def_framework = targetedVersion;
|
|
175
|
-
settingsConfig.version = targetedVersion;
|
|
176
|
-
ginaPath = settingsConfig.dir;
|
|
177
|
-
self.ginaPath = ginaPath;
|
|
178
|
-
// backup of folder version to archives
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
// console.debug('mainConfig: ', JSON.stringify(mainConfig, null, 2));
|
|
183
|
-
// console.debug('settingsConfig: ', JSON.stringify(settingsConfig, null, 2));
|
|
184
|
-
|
|
185
|
-
// saving local config
|
|
186
|
-
lib.generator.createFileFromDataSync(JSON.stringify(mainConfig, null, 2), mainConfigPath);
|
|
187
|
-
lib.generator.createFileFromDataSync(JSON.stringify(settingsConfig, null, 2), settingsConfigPath);
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
var frameworkPathObj = new _(frameworkPath, true);
|
|
191
|
-
console.debug('source path is: '+ frameworkPath);
|
|
192
|
-
|
|
193
|
-
var destination = _(ginaHomeDir +'/archives/framework/v'+selectedVersion, true);
|
|
194
|
-
if ( new _(destination).existsSync() ) {
|
|
195
|
-
new _(destination).rmSync();
|
|
196
|
-
}
|
|
197
|
-
var err = false;
|
|
198
|
-
|
|
199
|
-
// since we cannot yet promissify directly PathObject.cp()
|
|
200
|
-
var f = function(destination, cb) {
|
|
201
|
-
frameworkPathObj.cp(destination, cb);
|
|
202
|
-
};
|
|
203
|
-
await promisify(f)(destination)
|
|
204
|
-
.catch( function onCopyError(_err) {
|
|
205
|
-
err = _err;
|
|
206
|
-
})
|
|
207
|
-
.then( function onCopy(_destination) {
|
|
208
|
-
console.debug('Copy to '+ _destination +': done');
|
|
209
|
-
});
|
|
210
|
-
|
|
211
|
-
if (err) {
|
|
212
|
-
throw err;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
// rename folder version
|
|
216
|
-
destination = _(ginaPath +'/framework/v'+targetedVersion, true);
|
|
217
|
-
frameworkPathObj.renameSync(destination);
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
// updating requirements
|
|
221
|
-
self.selectedVersion = targetedVersion;
|
|
222
|
-
self.frameworkPath = frameworkPath = ginaPath +'/framework/v'+targetedVersion;
|
|
223
|
-
helpers = require(frameworkPath +'/helpers');
|
|
224
|
-
lib = require(frameworkPath +'/lib');
|
|
225
|
-
|
|
226
|
-
// keeping package.json up to date
|
|
227
|
-
//"main": "./framework/v{version}/core/gna",
|
|
228
|
-
package.main = './framework/v'+ targetedVersion +'/core/gna';
|
|
229
|
-
new _(pack, true).rmSync();
|
|
230
|
-
lib.generator.createFileFromDataSync(JSON.stringify(package, null, 2), pack);
|
|
231
|
-
|
|
232
|
-
done()
|
|
233
|
-
};
|
|
234
|
-
|
|
235
|
-
self.setupScriptCWD = function(done) {
|
|
236
|
-
var currentWorkingDir = process.cwd();
|
|
237
|
-
if ( self.ginaPath != currentWorkingDir ) {
|
|
238
|
-
console.debug('Changing current working dir from `'+ currentWorkingDir +'` to `'+ self.ginaPath +'`');
|
|
239
|
-
process.chdir(self.ginaPath);
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
done();
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
self.updateVersionIfNeeded = function(done) {
|
|
246
|
-
|
|
247
|
-
var version = self.selectedVersion.replace(/^[a-z]+/ig, '');
|
|
248
|
-
var versionFilePath = _(self.frameworkPath +'/VERSION', true);
|
|
249
|
-
var versionFilePathObj = new _(versionFilePath);
|
|
250
|
-
if ( versionFilePathObj.existsSync() ) {
|
|
251
|
-
// read & compare version
|
|
252
|
-
var inFileVersion = fs.readFileSync(versionFilePath).toString();
|
|
253
|
-
if ( inFileVersion == version ) {
|
|
254
|
-
// nothing to do then
|
|
255
|
-
return done();
|
|
256
|
-
}
|
|
257
|
-
versionFilePathObj.rmSync()
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
console.debug('updating version ...');
|
|
261
|
-
lib.generator.createFileFromDataSync(version, versionFilePath);
|
|
262
|
-
|
|
263
|
-
done();
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
self.updateMiddlewareIfNeeded = function(done) {
|
|
267
|
-
|
|
268
|
-
var version = self.selectedVersion.replace(/^[a-z]+/ig, '');
|
|
269
|
-
var middleware = 'isaac@'+version; // by default
|
|
270
|
-
var deps = require(_(self.frameworkPath, true) + '/package.json').dependecies;
|
|
271
|
-
for (let d in deps) {
|
|
272
|
-
if (d === 'express' && deps[d] != '') {
|
|
273
|
-
middleware = d +'@'+ deps[d]
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
var expressPackage = _(self.path + '/node_modules/express/package.json', true);
|
|
277
|
-
if ( typeof(middleware) == 'undefined' && new _(expressPackage).existsSync() ) {
|
|
278
|
-
middleware = require(expressPackage).version;
|
|
279
|
-
middleware = 'express@' + middleware;
|
|
280
|
-
} else if (typeof(middleware) == 'undefined') {
|
|
281
|
-
throw new Error('No middleware found !!');
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
var middlewareFilePath = _(self.frameworkPath +'/MIDDLEWARE', true);
|
|
285
|
-
var middlewareFilePathObj = new _(middlewareFilePath);
|
|
286
|
-
if ( middlewareFilePathObj.existsSync() ) {
|
|
287
|
-
// read & compare middleware
|
|
288
|
-
var inFileMiddleware = fs.readFileSync(middlewareFilePath).toString();
|
|
289
|
-
if ( inFileMiddleware == middleware ) {
|
|
290
|
-
// nothing to do then
|
|
291
|
-
return done();
|
|
292
|
-
}
|
|
293
|
-
middlewareFilePathObj.rmSync()
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
console.debug('updating middleware ...');
|
|
297
|
-
lib.generator.createFileFromDataSync(middleware, middlewareFilePath);
|
|
298
|
-
|
|
299
|
-
done();
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
self.removeAllSymlinks = function(done) {
|
|
303
|
-
|
|
304
|
-
// remove existing symlinks
|
|
305
|
-
var versionsFolders = null, frameworkPath = null;
|
|
306
|
-
try {
|
|
307
|
-
frameworkPath = _(self.ginaPath +'/framework', true);
|
|
308
|
-
console.debug('frameworkPath: ', frameworkPath);
|
|
309
|
-
if ( !new _(frameworkPath).existsSync() ) {
|
|
310
|
-
return done();
|
|
311
|
-
}
|
|
312
|
-
versionsFolders = fs.readdirSync(frameworkPath);
|
|
313
|
-
} catch (err) {
|
|
314
|
-
// do nothing
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
for (let i = 0, len = versionsFolders.length; i < len; i++) {
|
|
318
|
-
let dir = versionsFolders[i];
|
|
319
|
-
// skip junk
|
|
320
|
-
if ( /^\./i.test(dir) || /(\s+copy|\.old)$/i.test(dir) ) {
|
|
321
|
-
continue;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
// intercept & remove symlinks
|
|
325
|
-
try {
|
|
326
|
-
if ( fs.lstatSync( _(frameworkPath +'/'+ dir, true) ).isSymbolicLink() ) {
|
|
327
|
-
new _(frameworkPath +'/'+ dir, true).rmSync()
|
|
328
|
-
}
|
|
329
|
-
} catch (e) {
|
|
330
|
-
continue;
|
|
331
|
-
}
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
done();
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
self.pushChangesToGitIfNeeded = function(done) {
|
|
339
|
-
|
|
340
|
-
var cmd = null;
|
|
341
|
-
var version = self.selectedVersion.replace(/^[a-z]+/ig, '');
|
|
342
|
-
|
|
343
|
-
// getting current branch
|
|
344
|
-
// git rev-parse --abbrev-ref HEAD
|
|
345
|
-
// => 010
|
|
346
|
-
var currentBranch = null;
|
|
347
|
-
try {
|
|
348
|
-
currentBranch = execSync("git rev-parse --abbrev-ref HEAD")
|
|
349
|
-
.toString()
|
|
350
|
-
.replace(/(\n|\r|\t)/g, '');
|
|
351
|
-
} catch (err) {
|
|
352
|
-
// nothing to do
|
|
353
|
-
return done( new Error('[GIT] No branch selected') )
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
// create new branch if needed
|
|
358
|
-
// e.g: 0.1.0-alpha.1 -> 010-alpha1
|
|
359
|
-
var targetedBranch = version.replace(/\./g, '');
|
|
360
|
-
self.targetedBranch = targetedBranch;
|
|
361
|
-
|
|
362
|
-
console.debug('[GIT] Current branch: '+ currentBranch);
|
|
363
|
-
console.debug('[GIT] Targeted branch: '+ targetedBranch);
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
// check if targeted branch exists
|
|
367
|
-
// git rev-parse --verify 011
|
|
368
|
-
var branchExists = null;
|
|
369
|
-
try {
|
|
370
|
-
branchExists = execSync("git rev-parse --verify "+ targetedBranch)
|
|
371
|
-
.toString()
|
|
372
|
-
.replace(/(\n|\r|\t)/g, '');
|
|
373
|
-
} catch (err) {
|
|
374
|
-
// nothing to do
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
if (!branchExists) {
|
|
379
|
-
console.debug('No existing branch found, creating a new one !');
|
|
380
|
-
try {
|
|
381
|
-
execSync("git checkout -b "+ targetedBranch);
|
|
382
|
-
if (self.isGitPushNeeded) {
|
|
383
|
-
// pushing to new branch
|
|
384
|
-
console.debug('setting up remote branch `'+ targetedBranch +'` to git ...');
|
|
385
|
-
execSync("git push --set-upstream origin "+ targetedBranch);
|
|
386
|
-
}
|
|
387
|
-
} catch (err) {
|
|
388
|
-
console.error(err.stack||err.message||err);
|
|
389
|
-
return done(err);
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
// use existing to push updates
|
|
393
|
-
else {
|
|
394
|
-
|
|
395
|
-
if (currentBranch != targetedBranch) {
|
|
396
|
-
console.debug('Switching from branch `'+ currentBranch +'` to branch `'+ targetedBranch +'`');
|
|
397
|
-
// git checkout 010
|
|
398
|
-
try {
|
|
399
|
-
cmd = execSync("git checkout "+ targetedBranch);
|
|
400
|
-
} catch (err) {
|
|
401
|
-
console.error(err.stack||err.message||err);
|
|
402
|
-
return done(err);
|
|
403
|
-
}
|
|
404
|
-
} else {
|
|
405
|
-
console.debug('Reusing branch `'+ targetedBranch +'`');
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
// commit changes
|
|
410
|
-
try {
|
|
411
|
-
cmd = execSync("git add --all ");
|
|
412
|
-
} catch (err) {
|
|
413
|
-
//console.debug('`git add --all`failed ');
|
|
414
|
-
console.error(err.stack||err.message||err);
|
|
415
|
-
return done(err);
|
|
416
|
-
}
|
|
417
|
-
// git commit -m'Packaging version v'+ version
|
|
418
|
-
try {
|
|
419
|
-
var msg = (!branchExists) ? 'New version' : 'Prerelease update'; //+ new Date().format("isoDateTime");
|
|
420
|
-
if (self.git.msg) {
|
|
421
|
-
msg += ' - '+ self.git.msg
|
|
422
|
-
}
|
|
423
|
-
cmd = execSync("git commit -am'"+ msg +"'");
|
|
424
|
-
} catch (err) {
|
|
425
|
-
if (!/Your branch is up to date|nothing to commit, working tree clean/i.test( err.output.toString() )) {
|
|
426
|
-
console.error(err.stack||err.message||err);
|
|
427
|
-
return done(err);
|
|
428
|
-
}
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
if (self.isGitPushNeeded) {
|
|
432
|
-
console.debug('Pushing changes made on branch `'+ targetedBranch +'` to git `origin/'+ targetedBranch +'`');
|
|
433
|
-
// git push origin 010
|
|
434
|
-
try {
|
|
435
|
-
cmd = execSync("git push origin "+ targetedBranch );
|
|
436
|
-
} catch (err) {
|
|
437
|
-
if (!/Everything up-to-date/i.test( err.output.toString() )) {
|
|
438
|
-
console.error(err.stack||err.message||err);
|
|
439
|
-
return done(err);
|
|
440
|
-
}
|
|
441
|
-
}
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
done()
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
// self.tagVersionIfNeeded = function(done) {
|
|
451
|
-
// // check if script is on Dry Run !!!
|
|
452
|
-
// if ( typeof(process.env.npm_config_dry_run) != 'undefined' ) {
|
|
453
|
-
// // if on dry mode, we want to run post_install to reflect framework versions symlinks
|
|
454
|
-
// return done()
|
|
455
|
-
// }
|
|
456
|
-
|
|
457
|
-
// // merge master with targeted branch
|
|
458
|
-
// console.debug('Merging master with targeted branch: '+ self.targetedBranch +' -> v'+ self.targetedVersion);
|
|
459
|
-
|
|
460
|
-
// // tag version from master
|
|
461
|
-
|
|
462
|
-
// // remove old branch
|
|
463
|
-
|
|
464
|
-
// // checkout back to newly created tag or master ?
|
|
465
|
-
|
|
466
|
-
// done()
|
|
467
|
-
// }
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
var restoreSymlinks = function(done) {
|
|
471
|
-
|
|
472
|
-
if ( typeof(process.env.npm_config_dry_run) == 'undefined' || !process.env.npm_config_dry_run ) {
|
|
473
|
-
// ignoring for now, after publishing completion
|
|
474
|
-
return
|
|
475
|
-
}
|
|
476
|
-
var archivesPath = _(getUserHome() + '/.gina/archives/framework', true);
|
|
477
|
-
var frameworkPath = _(self.gina +'/framework', true);
|
|
478
|
-
|
|
479
|
-
if ( !new _(archivesPath).existsSync() ) {
|
|
480
|
-
return;
|
|
481
|
-
}
|
|
482
|
-
// get current framework version
|
|
483
|
-
var package = require(pack);
|
|
484
|
-
var currentVersion = 'v'+ package.version.replace(/^v/, '');
|
|
485
|
-
|
|
486
|
-
// cleanup first
|
|
487
|
-
var versionsFolders = fs.readdirSync(frameworkPath);
|
|
488
|
-
for (let i = 0, len = versionsFolders.length; i < len; i++) {
|
|
489
|
-
let dir = versionsFolders[i];
|
|
490
|
-
// skip junk
|
|
491
|
-
if ( /^\./i.test(dir) || /(\s+copy|\.old)$/i.test(dir) ) {
|
|
492
|
-
continue;
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
// intercept & remove existing symlinks or old versions dir
|
|
496
|
-
try {
|
|
497
|
-
if ( fs.lstatSync( _(frameworkPath +'/'+ dir, true) ).isSymbolicLink() ) {
|
|
498
|
-
console.debug('Removing Symlink: '+ _(frameworkPath +'/'+ dir, true) );
|
|
499
|
-
// new _(frameworkPath +'/'+ dir, true).rmSync();
|
|
500
|
-
fs.unlinkSync(_(frameworkPath +'/'+ dir, true));
|
|
501
|
-
continue;
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
if (
|
|
505
|
-
dir != currentVersion
|
|
506
|
-
&& fs.lstatSync( _(frameworkPath +'/'+ dir, true) ).isDirectory()
|
|
507
|
-
) {
|
|
508
|
-
console.debug('Removing old version: '+ _(frameworkPath +'/'+ dir, true));
|
|
509
|
-
new _(frameworkPath +'/'+ dir, true).rmSync()
|
|
510
|
-
}
|
|
511
|
-
} catch (e) {
|
|
512
|
-
continue;
|
|
513
|
-
}
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
// restoring symlinks from archives
|
|
517
|
-
versionsFolders = fs.readdirSync(archivesPath);
|
|
518
|
-
for (let i = 0, len = versionsFolders.length; i < len; i++) {
|
|
519
|
-
let dir = versionsFolders[i];
|
|
520
|
-
// skip junk
|
|
521
|
-
if ( /^\./i.test(dir) || /(\s+copy|\.old)$/i.test(dir) ) {
|
|
522
|
-
continue;
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
// skip selected - for dev team only
|
|
526
|
-
if ( new _(frameworkPath +'/'+ dir, true).existsSync() ) {
|
|
527
|
-
continue;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
|
-
// creating symlinks
|
|
531
|
-
try {
|
|
532
|
-
console.debug( 'Creating symlink: '+ _(archivesPath +'/'+ dir, true) +' -> '+ _(frameworkPath +'/'+ dir, true));
|
|
533
|
-
new _(archivesPath +'/'+ dir, true).symlinkSync(_(frameworkPath +'/'+ dir, true) );
|
|
534
|
-
} catch (e) {
|
|
535
|
-
return done(e)
|
|
536
|
-
}
|
|
537
|
-
}
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
self.end = function(done) {
|
|
541
|
-
|
|
542
|
-
// restoreSymlinks(done);
|
|
543
|
-
|
|
544
|
-
done()
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
init()
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
new PrepareVersion()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/asset/img/android-chrome-192x192.png
RENAMED
|
File without changes
|
/package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/asset/img/android-chrome-512x512.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/framework/{v0.1.1-alpha.99/core/asset/js → v0.1.2-alpha.1/core/asset}/plugin/uuid.json
RENAMED
|
File without changes
|
|
File without changes
|
/package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/controller/controller.framework.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/deps/encoding/encoding.js
RENAMED
|
File without changes
|
|
File without changes
|
/package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/lib/types/multipart.js
RENAMED
|
File without changes
|
/package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/busboy/lib/types/urlencoded.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/deps/swig-client/swig-2.0.0.min.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/framework/{v0.1.1-alpha.99 → v0.1.2-alpha.1}/core/locales/src/resources/currency.csv
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|