Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bustle/mobiledoc-kit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.14.2
Choose a base ref
...
head repository: bustle/mobiledoc-kit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 15 commits
  • 46 files changed
  • 4 contributors

Commits on Aug 31, 2022

  1. Add css in "exports" section of package.json (#774)

    * add css in "exports" section of package.json to ease usage of mobiledoc-kit in ESM environment.
    
    * Tweak name. Add top-level field for other tools
    
    Co-authored-by: gpoitch <[email protected]>
    romgere and gpoitch authored Aug 31, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3c71089 View commit details
  2. Demo: editable card example

    gpoitch committed Aug 31, 2022
    Copy the full SHA
    c3a6523 View commit details
  3. Build tooling updates (#775)

    * Fix demo watch
    
    * simplify website build
    
    * update tooling deps
    
    * update package.json files to include sourcemaps
    gpoitch authored Aug 31, 2022
    Copy the full SHA
    427f8bc View commit details
  4. Fix Linting (#777)

    Fix linting
    gpoitch authored Aug 31, 2022
    Copy the full SHA
    bd05164 View commit details
  5. Typescript ^4 (#778)

    gpoitch authored Aug 31, 2022
    Copy the full SHA
    ad1f4e4 View commit details
  6. Copy the full SHA
    4b225fa View commit details

Commits on Sep 1, 2022

  1. Generate Typescript Type Definitions (#779)

    * Publish typecript types
    
    * Fix unnamed things
    
    * put back
    
    * Put backs. version was for old build tooling
    
    * create a Mobiledoc type
    
    * privatize
    
    * more
    gpoitch authored Sep 1, 2022
    Copy the full SHA
    28809c3 View commit details
  2. v0.15.0

    gpoitch committed Sep 1, 2022
    Copy the full SHA
    3b235bc View commit details

Commits on Sep 6, 2022

  1. Copy the full SHA
    ae74ce9 View commit details
  2. Copy the full SHA
    cdd1260 View commit details

Commits on Sep 8, 2022

  1. Copy the full SHA
    8b7e1c9 View commit details

Commits on Sep 13, 2022

  1. Copy the full SHA
    942bc72 View commit details

Commits on Nov 14, 2024

  1. Added information about Python library (#791)

    * Added information about Python library
    
    * Update README.md
    
    ---------
    
    Co-authored-by: gpoitch <[email protected]>
    SuhJae and gpoitch authored Nov 14, 2024
    Copy the full SHA
    bae6097 View commit details
  2. Update CI (#793)

    gpoitch authored Nov 14, 2024
    Copy the full SHA
    7f0013c View commit details
  3. Copy the full SHA
    62d8fcb View commit details
Showing with 2,552 additions and 1,007 deletions.
  1. +253 −351 .eslintrc.js
  2. +11 −7 .github/workflows/ci.yml
  3. +0 −1 .gitignore
  4. +13 −1 CHANGELOG.md
  5. +11 −5 README.md
  6. +0 −14 bin/build-website.sh
  7. +2 −2 bin/deploy-website.sh
  8. +35 −3 demo/demo.css
  9. +98 −24 demo/demo.js
  10. +25 −2 demo/index.html
  11. +1,448 −0 demo/vendor/mobiledoc-dom-renderer.js
  12. +322 −276 package-lock.json
  13. +27 −21 package.json
  14. +30 −13 rollup.config.js
  15. +4 −2 src/js/cards/image.ts
  16. +41 −38 src/js/editor/editor.ts
  17. +1 −0 src/js/editor/post/post-inserter.ts
  18. +0 −5 src/js/editor/ui.ts
  19. 0 src/js/{types.d.ts → external-types.d.ts}
  20. +3 −3 src/js/index.ts
  21. +2 −2 src/js/models/card.ts
  22. +2 −0 src/js/models/list-item.ts
  23. +0 −22 src/js/models/post-node-builder.ts
  24. +1 −1 src/js/parsers/mobiledoc/0-2.ts
  25. +1 −1 src/js/parsers/mobiledoc/0-3-1.ts
  26. +1 −1 src/js/parsers/mobiledoc/0-3-2.ts
  27. +1 −1 src/js/parsers/mobiledoc/0-3.ts
  28. +3 −1 src/js/renderers/mobiledoc/0-2.ts
  29. +3 −1 src/js/renderers/mobiledoc/0-3-1.ts
  30. +3 −1 src/js/renderers/mobiledoc/0-3-2.ts
  31. +3 −1 src/js/renderers/mobiledoc/0-3.ts
  32. +3 −1 src/js/renderers/mobiledoc/index.ts
  33. +0 −4 src/js/utils/array-utils.ts
  34. +2 −2 src/js/utils/compiler.ts
  35. +1 −1 src/js/utils/cursor/position.ts
  36. +1 −1 src/js/utils/cursor/range.ts
  37. +2 −2 src/js/utils/element-utils.ts
  38. +3 −1 src/js/utils/keycodes.ts
  39. +3 −1 src/js/utils/keys.ts
  40. +2 −2 src/js/utils/merge.ts
  41. +0 −1 src/js/version.ts
  42. +34 −39 testem-ci.js
  43. +1 −2 tests/unit/utils/assert-test.ts
  44. +1 −1 tsconfig.json
  45. +3 −2 typedoc.json
  46. +152 −147 yarn.lock
Loading