Skip to content

Commit 634d8f1

Browse files
committed
prettier fix
1 parent d6d6326 commit 634d8f1

2 files changed

Lines changed: 3 additions & 7 deletions

File tree

src/content/posts/001-welcome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The new site should be:
2525

2626
## The new candidates
2727

28-
So I've ~killed~ archived the old one and I have to make a replacement. The old site was a react-based SPA. I could do the same with React or Shades but I still had to struggle with routes and SEO...
28+
So I've ~~killed~~ archived the old one and I have to make a replacement. The old site was a react-based SPA. I could do the same with React or Shades but I still had to struggle with routes and SEO...
2929

3030
First, I've checked [Jekyll](https://jekyllrb.com/) - as the default approach for Github Pages it's easy to setup and deploy. We've used it in one of my previous workplace, it does the job pretty well.
3131
The downside is that I'm not so familiar with Ruby, _gemfiles_ and other esotheric things, so the stack is totally out of scope. So the templating syntax, theming and stuffs like these.

src/content/posts/020-functional-di.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,7 @@ const UserStore = defineStore<User, 'username'>({
138138
const UserDataSet = defineDataSet({
139139
name: 'my-app/UserDataSet',
140140
store: UserStore,
141-
settings: {
142-
/* authorize, modifyOnAdd, etc. */
143-
},
141+
settings: {/* authorize, modifyOnAdd, etc. */},
144142
});
145143
```
146144

@@ -262,9 +260,7 @@ export const GridPageService = defineServiceAsync({
262260
const scope = useSystemIdentityContext({ injector, username: 'GridPageService' });
263261
onDispose(() => scope[Symbol.asyncDispose]());
264262
await seedDemoData(dataSet, scope);
265-
return {
266-
/* the actually useful surface */
267-
};
263+
return {/* the actually useful surface */};
268264
},
269265
});
270266
```

0 commit comments

Comments
 (0)