Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tailwind prettier + 11ty 2.01 #233

Merged
merged 3 commits into from
Mar 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"tabWidth": 2,
"useTabs": false
"plugins": ["prettier-plugin-tailwindcss"],
"pluginSearchDirs": false,
"overrides": [
{
"files": ["**/*.njk"]
}
]
}
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["ronnidc.nunjucks"]
}
22 changes: 22 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"workbench.colorCustomizations": {
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#d64d91",
"statusBar.background": "#c32d77",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#d64d91",
"statusBarItem.remoteBackground": "#c32d77",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#c32d77",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#c32d7799",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#c32d77",
"prettier.requireConfig": true,
"html.suggest.html5": true,
"emmet.includeLanguages": {
"njk": "html",
"nunjucks": "html"
}
}
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,10 @@ The are configured in /saga11.config.js

📜 content is in /src/content/

🎈 saga11 is build on top of [11ty](https://11ty.dev) & [NetlifyCMS](https://netlifycms.com)
🎈 saga11 is build on top of [11ty](https://11ty.dev) & [decap cms](https://decapcms.org/)

🪲 bugs & comments [github](https://github.com/mortendk/saga11)


🗑 Cleanup the build folder

```
Expand All @@ -44,7 +43,7 @@ $ npm run cleanup

## Static Sites FTW

Saga11 is a system to build static websites with a CMS
Saga11 is a system to build static websites

The taget audience is webdesigners that wants complete control over the markup, and that wants a true seperation of settings, content and output

Expand All @@ -57,8 +56,8 @@ https://www.figma.com/file/3lgQNUa3Y5TvV2V0XaQKoL/Saga-11?node-id=4266%3A924

## Kill localhost:[portnumber]

```sudo lsof -i :3791```
`sudo lsof -i :3791`

```kill -9 <PID>```
`kill -9 <PID>`

```sudo lsof -i :8081```
`sudo lsof -i :8081`
Loading