diff --git a/README.md b/README.md index ac7256f..aaba62a 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Twinkle-core uses [orange-i18n](https://github.com/wikimedia-gadgets/orange-i18n - Try to ensure all documentation comments align with the [TSDoc standard](https://tsdoc.org/), and [what Typedoc supports](https://typedoc.org/guides/doccomments/). - Ensure that code at the top level (that is, code at 0 level of indentation as well as class property initialisations) don't have usages of `msg()` as `msg` will only work once `initMessaging()` is run. - This library has no [side effects](https://sgom.es/posts/2020-06-15-everything-you-never-wanted-to-know-about-side-effects/). Never do anything at the top level that impacts the DOM or changes the state of any globally available variable, as that affects [tree-shaking](https://webpack.js.org/guides/tree-shaking/). All such code must be within a function that is exported and called only by the client twinkle installation. +- There do exist many TypeScript type errors currently. They should be avoided but are not disallowed if there isn't actually a bug. ## Workflows diff --git a/package-lock.json b/package-lock.json index 9ef5d0d..82d4ecf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "twinkle-core", - "version": "3.0.7-beta", + "version": "3.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "3.0.7-beta", + "version": "3.1.0", "license": "CC-BY-SA-3.0", "dependencies": { "@types/select2": "^4.0.53", diff --git a/package.json b/package.json index e8eb1ca..8643188 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "title": "Twinkle core", "name": "twinkle-core", - "version": "3.0.7-beta", + "version": "3.1.0", "repository": { "type": "git", "url": "https://github.com/wikimedia-gadgets/twinkle-core"