Skip to content

Commit

Permalink
✨ use profile-components for github wc (#28)
Browse files Browse the repository at this point in the history
* 🔧 patch for vscode to allow newer css

* ✨ use profile-components for github wc

* 🔥 remove github and unused stories

* 🔥 remove google analytics

* 🐛 fix releases
  • Loading branch information
scottnath authored Sep 15, 2023
1 parent cd184a3 commit d31b4c3
Show file tree
Hide file tree
Showing 48 changed files with 357 additions and 1,754 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ jobs:
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx multi-semantic-release --logLevel=trace
9 changes: 5 additions & 4 deletions .multi-releaserc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = {
"deps": {
"bump": "inherit"
}
export default {
deps: {
bump: 'inherit'
},
debug: true,
}
4 changes: 4 additions & 0 deletions .vscode/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Settings add missing support for css container query syntax

@see https://github.com/wileycoyote78/custom-css/
@see https://stackoverflow.com/questions/76125833/container-type-property-and-container-rule-are-not-recognized-by-vs-code/76125894#76125894
88 changes: 88 additions & 0 deletions .vscode/custom-css.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
{
"version": 1.1,
"$schema": "https://raw.githubusercontent.com/microsoft/vscode-css-languageservice/master/docs/customData.schema.json",
"atDirectives": [
{
"name": "@container",
"description": {
"kind": "markdown",
"value": "The **@container** CSS at-rule is a conditional group rule that applies styles to a containment context."
},
"references": [
{
"name": "MDN reference",
"url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@container"
}
],
"browsers": [
"E105",
"FF110",
"C105",
"S16.0",
"O91"
]
}
],
"properties": [
{
"name": "container-type",
"description": {
"kind": "markdown",
"value": "The **container-type** CSS property is used to define the type of containment used in a container query."
},
"references": [
{
"name": "MDN reference",
"url": "https://developer.mozilla.org/docs/Web/CSS/container-type"
}
],
"browsers": [
"E105",
"FF110",
"C105",
"S16.0",
"O91"
]
},
{
"name": "container-name",
"description": {
"kind": "markdown",
"value": "The **container-name** CSS property specifies a list of query container names used by the **@container** at rule in a container query."
},
"references": [
{
"name": "MDN reference",
"url": "https://developer.mozilla.org/en-US/docs/Web/CSS/container-name"
}
],
"browsers": [
"E105",
"FF110",
"C105",
"S16.0",
"O91"
]
},
{
"name": "container",
"description": {
"kind": "markdown",
"value": "The **container** shorthand CSS property establishes the element as a query container and specifies the name or name for the containment used in a container query."
},
"references": [
{
"name": "MDN reference",
"url": "https://developer.mozilla.org/en-US/docs/Web/CSS/container"
}
],
"browsers": [
"E105",
"FF110",
"C105",
"S16.0",
"O91"
]
}
]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"css.customData": [
"./.vscode/custom-css.json"
],
"prettier.enable": true,
}
Loading

0 comments on commit d31b4c3

Please sign in to comment.