bajo 0.0.1 → 0.1.0

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.
Files changed (107) hide show
  1. package/.jsdoc.conf.json +38 -0
  2. package/README.md +57 -3
  3. package/boot/attach-helper.js +26 -0
  4. package/boot/boot-order.js +34 -0
  5. package/boot/build-config.js +94 -0
  6. package/boot/create-scope.js +36 -0
  7. package/boot/exit-handler.js +60 -0
  8. package/boot/helper/build-collections.js +40 -0
  9. package/boot/helper/call-helper-or-handler.js +15 -0
  10. package/boot/helper/current-loc.js +11 -0
  11. package/boot/helper/defaults-deep.js +14 -0
  12. package/boot/helper/dump.js +10 -0
  13. package/boot/helper/each-plugins.js +94 -0
  14. package/boot/helper/envs.js +14 -0
  15. package/boot/helper/error.js +47 -0
  16. package/boot/helper/fatal.js +12 -0
  17. package/boot/helper/generate-id.js +19 -0
  18. package/boot/helper/get-config.js +18 -0
  19. package/boot/helper/get-global-module-dir.js +27 -0
  20. package/boot/helper/get-helper.js +11 -0
  21. package/boot/helper/get-item-by-name.js +26 -0
  22. package/boot/helper/get-key-by-value.js +5 -0
  23. package/boot/helper/get-module-dir.js +22 -0
  24. package/boot/helper/get-plugin-name.js +39 -0
  25. package/boot/helper/get-plugin.js +7 -0
  26. package/boot/helper/import-module.js +25 -0
  27. package/boot/helper/import-pkg.js +67 -0
  28. package/boot/helper/index.js +36 -0
  29. package/boot/helper/is-empty-dir.js +9 -0
  30. package/boot/helper/is-log-in-range.js +10 -0
  31. package/boot/helper/is-set.js +5 -0
  32. package/boot/helper/is-valid-app.js +12 -0
  33. package/boot/helper/is-valid-plugin.js +12 -0
  34. package/boot/helper/log-levels.js +19 -0
  35. package/boot/helper/pascal-case.js +7 -0
  36. package/boot/helper/print.js +89 -0
  37. package/boot/helper/read-config.js +46 -0
  38. package/boot/helper/read-json.js +10 -0
  39. package/boot/helper/resolve-path.js +15 -0
  40. package/boot/helper/resolve-tpl-path.js +21 -0
  41. package/boot/helper/run-hook.js +46 -0
  42. package/boot/helper/save-as-download.js +18 -0
  43. package/boot/helper/white-space.js +3 -0
  44. package/boot/index.js +60 -0
  45. package/boot/lib/bora.js +97 -0
  46. package/boot/lib/build-helper.js +58 -0
  47. package/boot/lib/logger.js +75 -0
  48. package/boot/lib/omitted-plugin-keys.js +3 -0
  49. package/boot/lib/parse-args-argv.js +75 -0
  50. package/boot/lib/parse-env.js +36 -0
  51. package/boot/lib/shim.js +14 -0
  52. package/boot/plugins/attach-helper.js +20 -0
  53. package/boot/plugins/build-config.js +75 -0
  54. package/boot/plugins/check-clash.js +18 -0
  55. package/boot/plugins/check-dependency.js +37 -0
  56. package/boot/plugins/collect-config-handlers.js +25 -0
  57. package/boot/plugins/collect-exit-handlers.js +23 -0
  58. package/boot/plugins/collect-hooks.js +33 -0
  59. package/boot/plugins/extend-config.js +21 -0
  60. package/boot/plugins/index.js +28 -0
  61. package/boot/plugins/run.js +31 -0
  62. package/boot/run-tool.js +34 -0
  63. package/docs/boot_build-config.js.html +75 -0
  64. package/docs/boot_create-scope.js.html +25 -0
  65. package/docs/boot_index.js.html +43 -0
  66. package/docs/data/search.json +1 -0
  67. package/docs/fonts/Inconsolata-Regular.ttf +0 -0
  68. package/docs/fonts/OpenSans-Regular.ttf +0 -0
  69. package/docs/fonts/WorkSans-Bold.ttf +0 -0
  70. package/docs/helper_emit.js.html +18 -0
  71. package/docs/helper_envs.js.html +16 -0
  72. package/docs/helper_error.js.html +25 -0
  73. package/docs/helper_get-bajo.js.html +42 -0
  74. package/docs/helper_index.js.html +39 -0
  75. package/docs/helper_log-levels.js.html +20 -0
  76. package/docs/helper_set-hook.js.html +38 -0
  77. package/docs/helper_walk-bajos.js.html +51 -0
  78. package/docs/index.html +16 -0
  79. package/docs/module-boot.html +3 -0
  80. package/docs/module-boot_buildConfig.html +3 -0
  81. package/docs/module-boot_createScope.html +3 -0
  82. package/docs/module-helper.html +7 -0
  83. package/docs/module-helper_setHook.html +4 -0
  84. package/docs/module-helper_walkBajos.html +6 -0
  85. package/docs/scripts/core.js +655 -0
  86. package/docs/scripts/core.min.js +23 -0
  87. package/docs/scripts/resize.js +90 -0
  88. package/docs/scripts/search.js +265 -0
  89. package/docs/scripts/search.min.js +6 -0
  90. package/docs/scripts/third-party/Apache-License-2.0.txt +202 -0
  91. package/docs/scripts/third-party/fuse.js +9 -0
  92. package/docs/scripts/third-party/hljs-line-num-original.js +369 -0
  93. package/docs/scripts/third-party/hljs-line-num.js +1 -0
  94. package/docs/scripts/third-party/hljs-original.js +5171 -0
  95. package/docs/scripts/third-party/hljs.js +1 -0
  96. package/docs/scripts/third-party/popper.js +5 -0
  97. package/docs/scripts/third-party/tippy.js +1 -0
  98. package/docs/scripts/third-party/tocbot.js +672 -0
  99. package/docs/scripts/third-party/tocbot.min.js +1 -0
  100. package/docs/styles/clean-jsdoc-theme-base.css +975 -0
  101. package/docs/styles/clean-jsdoc-theme-dark.css +407 -0
  102. package/docs/styles/clean-jsdoc-theme-light.css +388 -0
  103. package/docs/styles/clean-jsdoc-theme.min.css +1 -0
  104. package/package.json +36 -4
  105. package/test/helper-error.js +25 -0
  106. package/test/helper-isSet.js +41 -0
  107. package/test/helper-pathResolve.js +28 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.