nodality 1.0.0-beta.21 → 1.0.0-beta.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/layout/text.js +1 -1
  2. package/package.json +2 -2
package/layout/text.js CHANGED
@@ -16,7 +16,7 @@ class Text extends Animator {
16
16
  this.html = [];
17
17
  this.react = [];
18
18
  this.code.push(`new Text("${this.text}")`);
19
- // this.setRandom();
19
+ console.log("A");
20
20
  }
21
21
 
22
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodality",
3
- "version": "1.0.0-beta.21",
3
+ "version": "1.0.0-beta.22",
4
4
  "description": "A lightweight library for declarative UI elements.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -18,7 +18,7 @@
18
18
  "scripts": {
19
19
  "build": "webpack --config webpack.config.js",
20
20
  "test": "jest",
21
- "postpublish": "git add . && git commit -m \"release: v$npm_package_version\" && git tag v$npm_package_version && git push --force --set-upstream origin main && git push --force origin v$npm_package_version"
21
+ "postpublish": "git add . && git commit -m \"release: v$npm_package_version\" && git tag v$npm_package_version && git push --set-upstream origin main && git push origin v$npm_package_version"
22
22
  },
23
23
  "jest": {
24
24
  "testEnvironment": "jsdom",