Coder Social home page Coder Social logo

ahomu / talkie Goto Github PK

View Code? Open in Web Editor NEW
498.0 13.0 31.0 3.57 MB

Simple slide presentation library. Responsive scaling & markdown ready.

Home Page: https://ahomu.github.io/Talkie/

License: MIT License

JavaScript 3.50% CSS 26.10% TypeScript 53.26% HTML 10.90% Makefile 6.25%
talkie slide html markdown typescript rxjs

talkie's Introduction

Talkie.js - Web Components based Slide library

The master branch is unstable because it makes comprehensive changes with v0.13. For v0.12 code, please refer to the v0.12.x branch.

npm version build status Dependency Status

This library written in TypeScript & ReactiveX/rxjs: A reactive programming library for JavaScript.

For more information about dependency Please look at the package.json.

Feature

  • Markdown support
  • Code highlighting
  • Layout attributes
  • keyboard control
  • touch control
  • Responsive scaling (4:3, 16:9)
  • FullScreen mode
  • Background image & filter
  • Progress indicator
  • Accessibility support
  • Pointer mode (TODO)
  • Canvas drawing mode (experimental) (drop v0.13~)

Real presentation sample

Getting started

Talkie.js contains two of the CSS and one of JavaScript.

  • dist/talkie.min.css
  • dist/talkie.min.js
  • dist/talkie.theme-default.css

Next code is the simplest example.

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./dist/talkie.css">
<link rel="stylesheet" href="./dist/talkie.theme-default.css">
</head>
<body>

<!-- Pure HTML style -->
<tk-slide layout>
  <h1>Slide 1</h1>
</tk-slide>

<!-- Markdown style ( require `type` attribute ) -->
<tk-slide layout type="text/x-markdown">
# Slide 2
</tk-slide>

<script src="./dist/webcomponents-loader.js"></script>
<script src="./dist/talkie.js"></script>
<script>
window.addEventListener('WebComponentsReady', function(e) {
  document.body.className += ' webcomponents-ready';
  talkie.run();
});
</script>
</body>
</html>

If you use the code highlighting, you must load these files.

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/monokai-sublime.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>

Slide ratio

The default slide is 4:3 (width 1024px, height 768px). If you execute it with the following code, the slide ratio becomes 16:9 (width: 1366px, height 768px).

talkie.run({wide: true});

Scrolling direction

The default scrollable direction is vertical. If you execute it with the following code, the scroll direction becomes horizontal.

talkie.run({horizontal: true});

Backface image & filter

You can add backface attribute into each slides. Image path that you specify in the backface attribute will be the background of when the slide is displayed.

<tk-slide layout
          backface="background-image.jpg"
          backface-filter="blur(1px) brightness(.8)">

  <h1>Title</h1>
  <p>foo, bar, baz, qux...</p>

</tk-slide>

backface-filter attribute is applied to the background image as CSS Filters. But using this, will occur side effect significantly to performance on mobile device.

All options

interface TalkieOptions {
  wide?: boolean; // default: false
  horizontal?: boolean; // default: false
}

talkie.run(options);

FullScreen mode

When you press the f will be a full-screen mode. f or Esc Press and then exit.

Utilities

Many thanks!

Change Log

v0.13

  • TODO

v0.12

  • Add option linkShouldBlank.
  • Add [horizontal] style for default theme.
  • Fixed that transition suppression was not appropriate.
  • Update dependencies.

v0.11

  • Add experimental feature "canvas drawing".
  • Remove Aozora Mincho from default style.

v0.10

  • Improve accessibility support.
  • aria-hidden attribute to use instead of visible,
  • Rename attribute, page to data-page.
  • Rename attribute, body-bg to data-body-bg.
  • Rename attribute, no-transition to data-no-transition.

v0.9

  • Remove the Bacon.js, to use the ReactiveX/rxjs instead.
  • Add TalkieExport.key: (charKey: string) => Observable<KeyboardEvent>.
  • Deprecated TalkieExport.api
  • Deprecated TalkieExport.controls
  • Fixed unexpected transparent background at fullscreen.
  • Default theme some style changes.
    • [invert] has been cut out from the specified value of the layout.
    • Deprecated layouts [title-invert], [bullets-invert]
    • Now it is specified as [layout=title][invert].

License

The MIT License (MIT)

talkie's People

Contributors

ahomu avatar greenkeeper[bot] avatar tetsuharuohzeki avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

talkie's Issues

An in-range update of karma-firefox-launcher is breaking the build 🚨

Version 1.1.0 of karma-firefox-launcher was just published.

Branch Build failing 🚨
Dependency karma-firefox-launcher
Current Version 1.0.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

karma-firefox-launcher is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 8 commits.

  • cf20be3 chore(release): 1.1.0
  • 66812f1 chore: update dev dependencies
  • 98a4ada fix: safe handling of missing env variables
  • fe9d442 Merge pull request #77 from keithamus/patch-2
  • 66cd7ed chore(ci): remove depracted Node versions from Travis.yml
  • ede7023 Merge pull request #79 from mgol/mailmap
  • 5f352c4 chore: add a Git .mailmap with my new name
  • a1fc1c8 feat: support Firefox headless

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of keycode is breaking the build 🚨

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 2.2.0 of keycode was just published.

Branch Build failing 🚨
Dependency keycode
Current Version 2.1.9
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

keycode is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 7 commits.

  • 907ed6e Update travis.yml.
  • b11c0a0 Release 2.2.0
  • 34d0335 Merge branch 'master' of github.com:timoxley/keycode
  • 46afdc5 Add method keycode.isEventKey (#39)
  • bd57a8f Update travis.yml.
  • a47ba74 Make spacebar an alias.
  • c2d5e82 add new keycode for IE space (#46)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of browserify is breaking the build 🚨

Version 14.5.0 of browserify was just published.

Branch Build failing 🚨
Dependency browserify
Current Version 14.4.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

browserify is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 9 commits.

  • ccc0213 14.5.0
  • f2e720a changelog 14.5.0
  • 37bd7b4 Merge pull request #1733 from dignifiedquire/patch-1
  • 5a0c9ac use ~ range for <v1.0 deps
  • 866a2e7 Merge pull request #1767 from amiller-gh/master
  • 9857f90 Update os-browserify to 0.3.0
  • 0305b70 update readme links and travis badge
  • 9bc05a3 code of conduct
  • 52c0856 bump browserify-zlib to 0.2.0

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

マークダウン記法で<br>が効きません

お世話になっております。

Talkie.jsを使わせて頂いているのですが、前のバージョンでは
で改行がされたはずなのですが、現在使用中のv.0.8.1で
を使って改行がされず、そのまま
が残ってしまいました。
行末にスペースを二つ以上いれても改行がされません。

これは、マークダウン記法が変わったのでしょうか?

ご教示お願いします。

An in-range update of markdown-it is breaking the build 🚨

Version 8.3.2 of markdown-it just got published.

Branch Build failing 🚨
Dependency markdown-it
Current Version 8.3.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

markdown-it is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 12 commits.

  • d0e0cbd 8.3.2 released
  • 67419c0 Browser files rebuild
  • a733ffa Fix blockquote termination inside lists
  • c4d0a7f Merge pull request #387 from torifat/patch-1
  • 696231b Fix a small typo
  • dbab00e Merge pull request #383 from ZaninAndrea/patch-1
  • b7dd15f typo correction
  • a1b64e6 Update uglify-js to 3.x
  • ff643c5 Merge pull request #359 from Ullallulloo/master
  • bf4ba21 Fixed typos in comment
  • af75df0 Enable tests, disabled in prev commit
  • aa74c1f Add babelmark responder test

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

The `dist/talkie.js` and `dist/talkie.min.js` files are empty

I was attempting to run the basic example from the README, but it won't run as the /dist files are empty.

I am guessing I can generate these from the source by running the appropriate task, but it would be a lot easier if the current versions were pre-generated.

An in-range update of release-it is breaking the build 🚨

Version 2.8.2 of release-it just got published.

Branch Build failing 🚨
Dependency release-it
Current Version 2.8.0
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

release-it is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Release Notes Release 2.8.2
  • Log runtime options in debug mode (d9ad7e0)
  • Fix run() resolved value (1745f93)
  • Github assets: support an array syntax in .release.json (#102) (fc26e21)
Commits

The new version differs by 10 commits.

  • 71016ba Release 2.8.2
  • d9ad7e0 Log runtime options in debug mode
  • 1745f93 Fix run() resolved value
  • fc26e21 Github assets: support an array syntax in .release.json (#102)
  • 267ea3c Release 2.8.1
  • 3e6c21a Increase usage of native promises
  • e863417 Upload assets in non-interactive mode
  • 741650a Refactor logging a bit
  • adbbb4a Refactor shell command handling
  • f16e010 Add github.draft (close #100) (#101)

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of karma is breaking the build 🚨

Version 1.7.1 of karma just got published.

Branch Build failing 🚨
Dependency karma
Current Version 1.7.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As karma is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 3 commits.

  • ee40570 chore: release v1.7.1
  • 66b08e6 chore: update contributors
  • ea32194 feat(deps): add support for node@8

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of babel-plugin-espower is breaking the build 🚨

Version 2.4.0 of babel-plugin-espower was just published.

Branch Build failing 🚨
Dependency babel-plugin-espower
Current Version 2.3.2
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

babel-plugin-espower is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 6 commits.

  • bf0ffe9 2.4.0
  • 4aba0a9 docs(CHANGELOG): add CHANGELOG for 2.4.0
  • 968f828 chore(travis): update Node version matrix
  • 658c90d Merge pull request #25 from power-assert-js/with-experimental-syntax
  • c840ac1 feat: bridge module for babel-preset-power-assert to enable embedAst option by default
  • 5bda37d test: update expected output

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of power-assert is breaking the build 🚨

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 1.5.0 of power-assert was just published.

Branch Build failing 🚨
Dependency power-assert
Current Version 1.4.4
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

power-assert is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 27 commits.

  • 140c431 1.5.0
  • bcbc5b0 docs(CHANGELOG): add CHANGELOG for 1.5.0
  • 795c2c2 docs(README): refer to "strict mode" document
  • 2d388c1 docs(README): add Jest to "KNOWN TO WORK" list
  • 0d24c6e chore: update copyright year
  • e3b4e62 Merge pull request #104 from power-assert-js/assert-strict-mode
  • 41b3fea fix: strict property of strict mode assert should also be an empowered one
  • 12b0d1f test: structural compatibility between strict mode and legacy mode
  • 8f194a0 feat: strict mode assert function should also have strict property
  • 92b5ee7 refactor: prefer native strict implementation
  • fa2df87 feat: strict mode assert should also be a function
  • 9f86bc6 feat: support "Strict mode"
  • c4e49c5 chore(travis): add Node9, remove Node7, update EOL of LTS
  • f9ca847 docs(README): pull API section up
  • e5d43af docs(README): link to Node Assert API docs

There are 27 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of typescript is breaking the build 🚨

Version 2.4.1 of typescript just got published.

Branch Build failing 🚨
Dependency typescript
Current Version 2.4.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As typescript is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 141 commits.

  • 8b2fe13 Update LKG.
  • 14d95ed Test:Block-scoped definition of Promise works
  • a8846bf Skip block scope check with no error location
  • 44f2336 Merge pull request #16633 from Microsoft/release-2.4_fixIncrementalParsing
  • 4875a27 Add tests
  • 15ef20d Set the structureReused to be safemoudles when dynamic import change
  • 6d33083 Add tests
  • 11b9f6e Wip-fix incremental parsing
  • 2721fd4 In TypeScript code, never bind JSDoc normally, just set parent pointers (#16555) (#16561)
  • 0968ed9 Revert string enum changes (#16569)
  • 096f8cc Update LKG
  • 9241175 Allow running in strict mode (#16557)
  • f49b007 Update LKG
  • f1b0f59 Update version to 2.4.1
  • ed9cde9 Update LKG

There are 141 commits in total.

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

Version 6.0.10 of postcss just got published.

Branch Build failing 🚨
Dependency postcss
Current Version 6.0.9
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As postcss is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

Version 2.4.0 of sinon just got published.

Branch Build failing 🚨
Dependency sinon
Current Version 2.3.8
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As sinon is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 11 commits.

  • 20eb865 Update docs/changelog.md and set new release id in docs/_config.yml
  • e333e75 Add release documentation for v2.4.0
  • fde7911 2.4.0
  • 9afdcfc Update Changelog.txt and AUTHORS for new release
  • 57bb8b3 Merge pull request #1489 from Rowno/named-anonymous-mocks
  • c9a35ef Update fake-xhr-and-server.md
  • 837ec0c Allow anonymous mock functions to be named
  • 259a330 Merge pull request #1481 from fatso83/fix-safari-breaking
  • e742268 Merge pull request #1488 from VynceMontgomery/patch-1
  • a6a2b8c Clarify behavior of useFakeTimers
  • 24d15f2 Avoid running test for #1456 on Safari

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of tsify is breaking the build 🚨

Version 3.0.2 of tsify just got published.

Branch Build failing 🚨
Dependency tsify
Current Version 3.0.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As tsify is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of postcss-cli is breaking the build 🚨

Version 4.1.1 of postcss-cli just got published.

Branch Build failing 🚨
Dependency postcss-cli
Current Version 4.1.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As postcss-cli is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Release Notes v4.1.1
  • Fixed bug with --config
  • Upgraded dependencies
Commits

The new version differs by 10 commits.

  • 0ac612c 4.1.1
  • 37bf3d1 4.1.1
  • 6f4ca1d Update dependencies and ava devDep
  • 8455220 Prevent cosmiconfig from reading from process.argv
  • 2322cb8 Move args parsing to seperate file
  • adb1acd Modify npm scripts
  • d07e9f7 Switch from standard to eslint + prettier
  • d0f8069 Use pretty-hrtime for time formatting
  • dc03d51 Fix syntax error in docs (#141)
  • 3c90a48 Fix flags table --poll documentation (#138)

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of mocha is breaking the build 🚨

Version 3.5.0 of mocha just got published.

Branch Build failing 🚨
Dependency mocha
Current Version 3.4.2
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As mocha is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Release Notes free-as-in-freezing

3.5.0 / 2017-07-31

📰 News

  • Mocha now has a code of conduct (thanks @kungapal!).
  • Old issues and PRs are now being marked "stale" by Probot's "Stale" plugin. If an issue is marked as such, and you would like to see it remain open, simply add a new comment to the ticket or PR.
  • WARNING: Support for non-ES5-compliant environments will be dropped starting with version 4.0.0 of Mocha!

🔒 Security Fixes

🎉 Enhancements

  • #2696: Add --forbid-only and --forbid-pending flags. Use these in CI or hooks to ensure tests aren't accidentally being skipped! (@charlierudolph)
  • #2813: Support Node.js 8's --napi-modules flag (@jupp0r)

🔩 Other

Commits

The new version differs by 34 commits.

  • 82d879f Release v3.5.0
  • bf687ce update mocha.js for v3.5.0
  • ec73c9a update date for release of v3.5.0 in CHANGELOG [ci skip]
  • 1ba2cfc update CHANGELOG.md for v3.5.0 [ci skip]
  • 065e14e remove custom install script from travis (no longer needed)
  • 4e87046 update karma-sauce-launcher URL for npm@5
  • 6886ccc increase timeout for slow-grepping test
  • 2408d90 Make dependencies use older version of readable-stream to work around incompatibilities introduced by 2.3.0 on June 19th
  • 68a1466 Try not clearing the env for debug in the integration test and see if that fixes Node 0.10 on AppVeyor; if need be, some other fix/workaround can be applied to handle whatever was up with debug without causing this issue
  • 958fbb4 Update new tests to work in browser per test hierarchy reorganization
  • 1df7c94 Merge pull request #2704 from seppevs/increase_test_coverage_of_mocha_js
  • 1f270cd Stop timing out (#2889)
  • 27c7496 upgrade to [email protected]; closes #2859 (#2860)
  • 50fc47d fix CI; closes #2867 (#2868)
  • 1b1377c Add test for ignoreLeaks and fix descriptions

There are 34 commits in total.

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of watchify is breaking the build 🚨

Version 3.10.0 of watchify was just published.

Branch Build failing 🚨
Dependency watchify
Current Version 3.9.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

watchify is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 8 commits.

  • 5f7f27b 3.10.0
  • 6de686b browserify@15
  • cf05baa Merge pull request #319 from a0viedo/patch-1
  • 114982d Merge pull request #326 from mjomble/patch-1
  • e2a6e82 Merge pull request #335 from palfrey/patch-1
  • d49c5e9 Should be "b.bundle" not "w.bundle"
  • 230c72c Fixed typo in readme
  • 074d6da link build badge to master branch

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of karma-browserify is breaking the build 🚨

Version 5.1.2 of karma-browserify was just published.

Branch Build failing 🚨
Dependency karma-browserify
Current Version 5.1.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

karma-browserify is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 5 commits.

  • 6e0fcce 5.1.2
  • 88673c4 chore(npmignore): ignore dev configuration(s)
  • 0fed147 chore(project): remove grunt + jshint
  • 08141de chore(ci): test against node {4,6,8}
  • 21bd468 chore(project): bump dev dependencies

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of keycode is breaking the build 🚨

Version 2.1.8 of keycode just got published.

Branch Build failing 🚨
Dependency keycode
Current Version 2.1.7
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

As keycode is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


Status Details
  • ci/circleci Your tests failed on CircleCI Details
Commits

The new version differs by 2 commits .

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of browserify is breaking the build 🚨

Version 14.4.0 of browserify just got published.

Branch Build failing 🚨
Dependency browserify
Current Version 14.3.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As browserify is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 11 commits.

  • 21af338 14.4.0
  • 4fc4b3c changelog: remove trailing whitespace
  • 94a5c03 changelog
  • f6feab7 Merge pull request #1714 from mcollina/patch-1
  • 89809c3 Merge pull request #1722 from blahah/patch-1
  • 80df2ec Document ignoreMissing option for browserify() (closes #1595)
  • 107d9bb Updated string_decoder to v1.0.0
  • 91ed9c8 Merge pull request #1713 from substack/feross-patch-1
  • d247a52 Use SVG Travis badge
  • d461420 Merge pull request #1712 from substack/feross/tests
  • de4147c test: fix tests on node 0.10 that require ArrayBuffer

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.