pathom

J 2023-09-06T07:01:22.068849Z

Hello guys! I’m wonder if it’s possible to remove a plugin for a specific process computation?

✅ 1
J 2023-09-06T07:58:11.165469Z

Like

(def new-pathom-env
    (-> pathom-env
        (update :com.wsscode.pathom3.plugin/plugin-order
                (fn [plugins-order]
                  (remove
                    #(= (:com.wsscode.pathom3.plugin/id %)
                        'beop.pathom.plugins/rename-output-plugin)
                    plugins-order)))))

J 2023-09-06T09:15:10.953249Z

ooh I see the remove-plugin function in the plugin namespace!