Skip to content
#

transform

Here are 441 public repositories matching this topic...

Jip-Hop
Jip-Hop commented Mar 11, 2020

I like this library :)

But I'd like to request the feature to inverse the arrow key direction for panning.
Was able to workaround it myself but could be nice to just pass it as an option.

I made a jsfiddle to show my use case.
Drag the blue circle to the bottom right corner, click the image to activate it and position it inside the container with the arrow

FibreFoX
FibreFoX commented Jul 23, 2018

Current documentation inside README.md contains the following example code:

persistStore(store, {
  transforms: [
    saveSubsetFilter,
    saveSubsetBlacklistFilter,
    loadSubsetFilter,
    saveAndloadSubsetFilter,
  ]
});

Using this with redux-persist in version 5.9.1 results in thrown error-message:
`redux-persist: invalid option passed to persistStore: "transf

RobLoach
RobLoach commented Jul 28, 2015

There has been the adoption of options.plugins in a couple of the transforms, which allows the loading of additional functionality. What other standards could we introduce?

Thoughts on some of the following?

  • options.partials - Associative array of partial name -> fn representing available partials
  • options.includePaths - Array of paths to search when including files
  • `options.filen
dko-slapdash
dko-slapdash commented May 5, 2020
# src/page.ts
import(/* webpackChunkName: "Some" */ "../pages/Some")

Without typescript-transform-paths, this correctly transpiles to the exactly same JS code, the comments remained.

With typescript-transform-paths, it transpiles to:

# dist/page.js
import("../pages/Some")

I.e. the plugin removes comments even when removeComments=false in tsconfig.json's compilerOp

Improve this page

Add a description, image, and links to the transform topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the transform topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.