globalize-rpk 1.7.1 → 1.7.2

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 (81) hide show
  1. package/CONTRIBUTING.md +5 -0
  2. package/README.md +818 -0
  3. package/{globalize → dist/globalize}/currency.js +3 -3
  4. package/{globalize → dist/globalize}/date.js +3 -3
  5. package/{globalize → dist/globalize}/message.js +2 -2
  6. package/{globalize → dist/globalize}/number.js +3 -3
  7. package/{globalize → dist/globalize}/plural.js +3 -3
  8. package/{globalize → dist/globalize}/relative-time.js +3 -3
  9. package/{globalize → dist/globalize}/unit.js +0 -0
  10. package/dist/globalize-runtime/currency.js +183 -0
  11. package/dist/globalize-runtime/date.js +1657 -0
  12. package/dist/globalize-runtime/message.js +120 -0
  13. package/dist/globalize-runtime/number.js +919 -0
  14. package/dist/globalize-runtime/plural.js +90 -0
  15. package/dist/globalize-runtime/relative-time.js +120 -0
  16. package/dist/globalize-runtime/unit.js +132 -0
  17. package/{globalize → dist}/globalize-runtime.js +0 -0
  18. package/{globalize → dist}/globalize.js +2 -2
  19. package/{node-main.js → dist/node-main.js} +0 -0
  20. package/doc/api/core/constructor.md +28 -0
  21. package/doc/api/core/load.md +96 -0
  22. package/doc/api/core/locale.md +43 -0
  23. package/doc/api/currency/currency-formatter.md +196 -0
  24. package/doc/api/currency/currency-to-parts-formatter.md +117 -0
  25. package/doc/api/date/date-formatter.md +203 -0
  26. package/doc/api/date/date-parser.md +60 -0
  27. package/doc/api/date/date-to-parts-formatter.md +176 -0
  28. package/doc/api/date/load-iana-time-zone.md +29 -0
  29. package/doc/api/message/load-messages.md +105 -0
  30. package/doc/api/message/message-formatter.md +208 -0
  31. package/doc/api/number/number-formatter.md +202 -0
  32. package/doc/api/number/number-parser.md +130 -0
  33. package/doc/api/number/number-to-parts-formatter.md +140 -0
  34. package/doc/api/plural/plural-generator.md +84 -0
  35. package/doc/api/relative-time/relative-time-formatter.md +60 -0
  36. package/doc/api/unit/unit-formatter.md +72 -0
  37. package/doc/blog-post/2017-07-xx-1.3.0-announcement.md +177 -0
  38. package/doc/cldr.md +114 -0
  39. package/doc/error/e-default-locale-not-defined.md +9 -0
  40. package/doc/error/e-invalid-cldr.md +14 -0
  41. package/doc/error/e-invalid-par-type.md +12 -0
  42. package/doc/error/e-invalid-par-value.md +11 -0
  43. package/doc/error/e-missing-cldr.md +11 -0
  44. package/doc/error/e-missing-parameter.md +10 -0
  45. package/doc/error/e-missing-plural-module.md +9 -0
  46. package/doc/error/e-par-missing-key.md +11 -0
  47. package/doc/error/e-par-out-of-range.md +13 -0
  48. package/doc/error/e-unsupported.md +10 -0
  49. package/doc/migrating-from-0.x.md +64 -0
  50. package/examples/amd-bower/.bowerrc +7 -0
  51. package/examples/amd-bower/README.md +65 -0
  52. package/examples/amd-bower/bower.json +13 -0
  53. package/examples/amd-bower/index.html +46 -0
  54. package/examples/amd-bower/main.js +141 -0
  55. package/examples/amd-bower/messages/en.json +12 -0
  56. package/examples/amd-bower/package.json +14 -0
  57. package/examples/app-npm-webpack/README.md +74 -0
  58. package/examples/app-npm-webpack/app/index.js +89 -0
  59. package/examples/app-npm-webpack/index-template.html +71 -0
  60. package/examples/app-npm-webpack/messages/ar.json +25 -0
  61. package/examples/app-npm-webpack/messages/de.json +21 -0
  62. package/examples/app-npm-webpack/messages/en.json +21 -0
  63. package/examples/app-npm-webpack/messages/es.json +21 -0
  64. package/examples/app-npm-webpack/messages/pt.json +21 -0
  65. package/examples/app-npm-webpack/messages/ru.json +23 -0
  66. package/examples/app-npm-webpack/messages/zh.json +20 -0
  67. package/examples/app-npm-webpack/package.json +17 -0
  68. package/examples/app-npm-webpack/webpack-config.js +63 -0
  69. package/examples/globalize-compiler/README.md +45 -0
  70. package/examples/globalize-compiler/app.js +58 -0
  71. package/examples/globalize-compiler/development.html +121 -0
  72. package/examples/globalize-compiler/messages.json +12 -0
  73. package/examples/globalize-compiler/package.json +15 -0
  74. package/examples/globalize-compiler/production.html +75 -0
  75. package/examples/node-npm/README.md +57 -0
  76. package/examples/node-npm/main.js +65 -0
  77. package/examples/node-npm/messages/en.json +12 -0
  78. package/examples/node-npm/package.json +10 -0
  79. package/examples/plain-javascript/README.md +81 -0
  80. package/examples/plain-javascript/index.html +445 -0
  81. package/package.json +27 -4
@@ -0,0 +1,5 @@
1
+ Welcome! Thanks for your interest in contributing to Globalize. More information on how to contribute to this and all other jQuery Foundation projects is over at [contribute.jquery.org](http://contribute.jquery.org). Before writing code for this project, be sure to read [Writing Code for jQuery Foundation Projects](http://contribute.jquery.org/code/).
2
+
3
+ You may also want to take a look at our [commit & pull request guide](http://contribute.jquery.org/commits-and-pull-requests/) and [style guides](http://contribute.jquery.org/style-guide/) for instructions on how to maintain your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla).
4
+
5
+ You can find us on [Slack](https://globalizejs.slack.com/). If you're new, [join here](https://join.slack.com/t/globalizejs/shared_invite/enQtMjk4OTUwNzM1Nzk0LTk2YmY0YjY3Yzk4YzU3M2NkMDZjNThlNzcwNTkyNGJhNDhiNjdkMWUyN2Q2MjVmNTk0ZjkyNGQ3MWEyNzNmMWU). If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/).