Josh Lind
Josh Lind
Same issue. The problem originates in `initField(field)` while checking for a helper class for the field type. This is within the Prismic JS SDK (not the metalsmith-prismic repo). When the...
I can confirm that site builds (without slices) still work after updating to the prismic js-sdk to 3.6.1 from 1.4.0 ...this is promising for being able to use slices within...
After updating to **Prismic JS SDK 3.6.1** a new error pops up with slices... ``` /my/project/path/node_modules/metalsmith-prismic/lib/index.js:244 if (!fragment.asHtml) { ^ TypeError: Cannot read property 'asHtml' of undefined at processSingleFragment (/my/project/path/node_modules/metalsmith-prismic/lib/index.js:244:24)...
Here is the problem code (was marked with a `//TODO`)... `/my/project/path/node_modules/metalsmith-prismic/lib/index.js` ```javascript } else if (fragment instanceof Prismic.Fragments.SliceZone) { // TODO childPromises.push(Promise.all(_.map(fragment.value, function(sliceFragment) { return processSingleFragment(sliceFragment.value, ctx, queryMetadata).then(function (subFragmentObject) {...
Here's how to suggest relevant content based on category tags in a field... https://www.sanity.io/schemas/related-content-9079f69e
Also interested in private accounts. http://docs.travis-ci.com/api/#authentication
Working on this -- https://github.com/tableau-mkt/php-travis-client/commit/ea7ca2ce50d2c3329b9724eb2db3bb0bf6a5e999
Updated the library to allow public repos! No merge request yet. - Added a `setApiUrlPrivate()` function. - Added both a `$clientInterface` for curl, and token param in the `__construct` function,...
Having a little trouble getting the endpoint to behave. It's rather picky and purely serves a 400 at present. https://github.com/tableau-mkt/php-travis-client/blob/master/src/Travis/Client.php#L62
Got this working. Added a new `$client->restartBuild($build)` method [/src/Travis/Client.php](https://github.com/tableau-mkt/php-travis-client/blob/master/src/Travis/Client.php). You'll need to first fetch the repository and find out which build to restart. Note: all restarting also required authorized access....