govern
govern copied to clipboard
Givern.js: createDao not exported
Hi,
I installed govern.js "1.0.0-beta.12" ( yarn add @aragon/govern
) and tried to execute
a simple nodejs script wih createDao, but it seems the function is not exported (or not exist).
The following snippet
import { createDao } from "@aragon/govern";
(function doSomething() {
// ...
})();
gives me
index.mjs:1
import { createDao } from "@aragon/govern";
^^^^^^^^^
SyntaxError: Named export 'createDao' not found.
Is there an update release I should use? Thanks
Giovanni