create-nodality-react 1.0.0-beta.7 → 1.0.0-beta.70

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.
package/bin/index.js CHANGED
@@ -41,7 +41,7 @@ function createProject(projectName) {
41
41
  dependencies: {
42
42
  react: "^18.0.0",
43
43
  "react-dom": "^18.0.0",
44
- nodality: "^1.0.0-beta.8",
44
+ nodality: "^1.0.0-beta.70",
45
45
  },
46
46
  devDependencies: {
47
47
  webpack: "^5.0.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nodality-react",
3
- "version": "1.0.0-beta.7",
3
+ "version": "1.0.0-beta.70",
4
4
  "description": "Scaffolding tool for creating Nodality React projects",
5
5
  "main": "bin/index.js",
6
6
  "bin": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "scripts": {},
10
10
  "keywords": ["nodality", "react", "scaffolding", "create"],
11
- "author": "Your Name",
11
+ "author": "Filip Vabrousek",
12
12
  "license": "MIT",
13
13
  "dependencies": {}
14
14
  }
package/release.sh ADDED
@@ -0,0 +1,12 @@
1
+ # Run `gh auth status` and capture the output
2
+ auth_output=$(gh auth status 2>&1)
3
+
4
+ # Print the output for logging
5
+
6
+ # Check if logged in as 'nodalityjs'
7
+ if echo "$auth_output" | grep -q 'github\.com as nodalityjs'; then
8
+ echo "🚀 Logged in as nodalityjs — continuing."
9
+ else
10
+ echo "🚫 Not logged in as nodalityjs. Aborting."
11
+ exit 1
12
+ fi
@@ -29,7 +29,7 @@ function Wrappera({ setIsNav }) {
29
29
  .set({ background: "orange" })
30
30
  .add([
31
31
  new Text(`Counter ${count}`).set({
32
- fluidc: "S1",
32
+ size: "S1",
33
33
  font: "Arial",
34
34
  onTap: () => {
35
35
  setCount(count + 1);