create-nodality 1.0.97 → 1.0.98

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/bin/index.js +11 -6
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -125,12 +125,17 @@ new Des()
125
125
  // },
126
126
  // });
127
127
 
128
- new Text("Hello")
129
- .set({
130
- size: "S1",
131
- font: "Arial",
132
- })
133
- .render("#mount");
128
+ new Text("Hello").set({
129
+ size: "S1",
130
+ font: "Arial",
131
+ stroke: {
132
+ op: {
133
+ name: "blast",
134
+ color: "green",
135
+ width: "1px"
136
+ }
137
+ }
138
+ }).render("#mount");
134
139
  `;
135
140
  writeFileSync(resolve(projectPath, "upload", "pages", "index.js"), uploadPageJs);
136
141
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nodality",
3
- "version": "1.0.97",
3
+ "version": "1.0.98",
4
4
  "description": "Project scaffolding tool for Nodality library",
5
5
  "bin": {
6
6
  "create-nodality": "bin/index.js"