Giter Site home page Giter Site logo

beevelop / cordova-build Goto Github PK

View Code? Open in Web Editor NEW

This project forked from stanhuff/cordova-build

0.0 0.0 0.0 19.37 MB

A convenient way to handle your own cordova builds without relying on Phonegap Build.

License: MIT License

JavaScript 89.96% CSS 1.82% HTML 8.22%

cordova-build's People

Contributors

beevelop avatar dotnetwise avatar greenkeeper[bot] avatar

Watchers

 avatar  avatar  avatar

cordova-build's Issues

An in-range update of socket.io is breaking the build 🚨

Version 1.7.3 of socket.io just got published.

Branch Build failing 🚨
Dependency socket.io
Current Version 1.7.2
Type dependency

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

As socket.io 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found Details

Commits

The new version differs by 2 commits .

  • 06044ef [chore] Release 1.7.3
  • 5012806 [chore] Bump engine.io to version 1.8.3

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 shortid is breaking the build 🚨

Version 2.2.7 of shortid just got published.

Branch Build failing 🚨
Dependency shortid
Current Version 2.2.6
Type dependency

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

As shortid 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found Details

Commits

The new version differs by 4 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 fs-extra is breaking the build 🚨

Version 2.1.1 of fs-extra just got published.

Branch Build failing 🚨
Dependency fs-extra
Current Version 2.1.0
Type dependency

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

As fs-extra 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 4 commits .

  • cfcf313 2.1.1
  • 659fafa Update CHANGELOG
  • b121cf0 Use new Buffer() in moveSync() to support full Node.js v4 line
  • e02c07b Revert "Use Buffer.alloc() instead of deprecated new Buffer() in copy-file-sync, add engines field to package.json to specify min node v4.5.0"

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 date-format-lite is breaking the build 🚨

Version 0.9.2 of date-format-lite just got published.

Branch Build failing 🚨
Dependency date-format-lite
Current Version 0.9.1
Type dependency

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

As date-format-lite 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found Details

Commits

The new version differs by 4 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 🌴

Update and extend documentation

  • mode: git
  • mode: UI
  • troubleshooting (e.g. Git-Paths,...)
  • check requirements
  • visualize mode relations (to explain the whole picture)

UI: add SSL-support

Use -cert and -key options to enable SSL-encryption.
Additionally add a -sslport option.

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

Version 3.4.2 of knockout just got published.

Branch Build failing 🚨
Dependency knockout
Current Version 3.4.1
Type devDependency

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

As knockout 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 No test commands were found Details

  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

Release Notes Version 3.4.2

This release fixes a number of bugs related to deferred updates and computed observables.

  • stop infinite loop from dirty events in circular computeds (#1943)
  • only update a computed if dependency has actually changed; not if it was just dirty (#2174)
  • only notify subscriptions that exist when a change occurs; don't notify future subscribers (#2163)
  • notify dependent computed of change in reverted observable if the computed previously read a different intermediate value (#1835)
  • update a pure computed if a dependency has changed and notification is pending (#2197)
Commits

The new version differs by 9 commits (ahead by 9, behind by 1).

  • 4888305 Version 3.4.2 for distribution
  • 5fec23b Don't re-evaluate on access after we know that no change occurred.
  • 1722530 When using deferred updates, a sleeping pure computed should see pending changes to its dependencies
  • e0dfa49 Modify dirty/stale logic so that we don't need to check both isDirty and isStale
  • 0169f52 Make sure #1835 and #2174 work together properly. Update version.
  • 84233ac #1943: prevent circular deferred computeds from causing infinite loop by preventing recursive dirty notifications.
  • a86a345 #1835: If a computed reads an observable with a pending notification (possible intermediate value), ensure we get notified of the actual final value (bypass equality checks). When checking if an observable has a pending notification, also compare the value. If it hasn't actually changed, don't force the notification.
  • 8b33c96 #2163: When a notification is delayed, save a copy of subscriptions to only notify those present and not future subscriptions.
  • 8e26395 #2174: when using deferred updates, only evaluate a computed if one of its dependencies actually changes (rather than just being "dirty")

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 fs-extra is breaking the build 🚨

Version 2.1.0 of fs-extra just got published.

Branch Build failing 🚨
Dependency fs-extra
Current Version 2.0.0
Type dependency

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

As fs-extra 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found Details

Commits

The new version differs by 87 commits .

  • 90b3609 2.1.0
  • 6ebcb9c Update CHANGELOG
  • efe0d80 Merge pull request #378 from jdalton/move-check
  • 8d978db Don't move when source and dest paths are the same.
  • cf2c50d Merge pull request #386 from jprichardson/changelog
  • 4db96c5 Update CHANGELOG
  • 1f30161 Merge pull request #384 from jprichardson/docs-cleanup-async-methods
  • 83a6190 docs: Refactor remove exmaple to use remove instead of removeSync
  • 936011e docs: Refactor remove and removeSync parameter name
  • fc5fca9 docs: Refactor docs to include parameters type
  • e46b820 Merge pull request #383 from jprichardson/docs-refactor-readJson-example
  • a4f6481 docs/readJson.md: Refactor example for readJson method, refactor move and moveSync tests descriptions
  • b5c72dc Merge pull request #382 from jprichardson/docs-split-out-sync-methods
  • 10756de docs: Refactor readJsonSync example
  • 02c2a62 Docs: Split out sync methods

There are 87 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 🌴

Git-server integration

  • receive push
  • generate zip
  • request build with generated zip
  • save files to repository
  • commit changes*

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

Version 3.5.4 of filesize just got published.

Branch Build failing 🚨
Dependency filesize
Current Version 3.5.3
Type dependency

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

As filesize 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found Details

Commits

The new version differs by 3 commits .

  • 7c75121 Updating example in README
  • 1f6c51f Updating example in README
  • 727db07 Adding fullforms for overriding full form

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 🌴

Improve code quality

  • prototype-based oop
  • detailed documentation with JSDoc
  • get CodeClimate GPA to 3.*

An in-range update of socket.io is breaking the build 🚨

Version 1.7.2 of socket.io just got published.

Branch Build failing 🚨
Dependency socket.io
Current Version 1.7.1
Type dependency

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

As socket.io 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found Details

Commits

The new version differs by 3 commits .

  • 1f59e45 [chore] Release 1.7.2 (#2783)
  • 0a7afa8 [chore]Β Bump engine.io to version 1.8.2 (#2782)
  • 1e31769 [fix] Fixes socket.use error packet (#2772)

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 filesize is breaking the build 🚨

Version 3.5.6 of filesize just got published.

Branch Build failing 🚨
Dependency filesize
Current Version 3.5.5
Type dependency

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

As filesize 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found Details

Commits

The new version differs by 1 commits .

  • 77db546 Building missing files, updating README

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 🌴

Extend and parse cordovas config.xml

  • Plugins: Parse and install the specified plugins (via cordova plugin add)
  • Icons: copy icons to the platforms
  • Splashscreen: copy splashscreens to the platforms

depends on #4

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

Version 3.5.5 of filesize just got published.

Branch Build failing 🚨
Dependency filesize
Current Version 3.5.4
Type dependency

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

As filesize 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found Details

Commits

The new version differs by 1 commits .

  • 422f427 Changing things such that you can do filesize(0, {exponent: n}) and get the correct result, adding a test, fixes #85

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 async is breaking the build 🚨

Version 2.1.5 of async just got published.

Branch Build failing 🚨
Dependency async
Current Version 2.1.4
Type dependency

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

As async 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found 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 npmlog is breaking the build 🚨

Version 4.0.2 of npmlog just got published.

Branch Build failing 🚨
Dependency npmlog
Current Version 4.0.1
Type dependency

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

As npmlog 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found 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 🌴

Add platforms via agents

Currently platforms have to be added by the client (via cordova platform add ...). Adding iOS on a Windows-Clients is impossible due to the required environment (XCode,...). Therefore it would be useful to (optionally?) add the platforms via the agents.

An in-range update of fs-extra is breaking the build 🚨

Version 2.1.2 of fs-extra just got published.

Branch Build failing 🚨
Dependency fs-extra
Current Version 2.1.1
Type dependency

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

As fs-extra 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found Details

Commits

The new version differs by 4 commits .

  • 84717b8 2.1.2
  • fcb436d Update CHANGELOG
  • 6f2b6d1 Merge pull request #393 from jprichardson/rimraf-callback
  • 55c5eb0 Prevent callback from being called twice

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 express is breaking the build 🚨

Version 4.14.1 of express just got published.

Branch Build failing 🚨
Dependency express
Current Version 4.14.0
Type dependency

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

As express 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
  • ❌ continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • ❌ ci/circleci No test commands were found Details

Release Notes 4.14.1
Commits

The new version differs by 24 commits .

There are 24 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 🌴

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.