Skip to content

Commit f43ea8d

Browse files
committed
feat: add library tags example
1 parent 3c53a85 commit f43ea8d

24 files changed

+343
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.vscode/settings.json
2+
*.DS_Store
3+
*.log
4+
*.tgz
5+
coverage
6+
dist
7+
node_modules
8+
.env
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_
2+
.env
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lint-staged && npm run build
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://json.schemastore.org/lintstagedrc.schema.json",
3+
"*.{ts,js}": ["eslint --fix", "prettier --write"],
4+
"*.css": ["stylelint --fix", "prettier --write"],
5+
"*.{marko,html,json,md}": ["prettier --write"]
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://json.schemastore.org/postcssrc.json",
3+
"plugins": {
4+
"postcss-auto-modules": {}
5+
}
6+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
__snapshots__
2+
.vscode
3+
CHANGELOG.md
4+
coverage
5+
dist
6+
node_modules
7+
package-lock.json
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "https://json.schemastore.org/prettierrc",
3+
"plugins": ["prettier-plugin-packagejson", "prettier-plugin-marko"]
4+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { StorybookConfig } from "@storybook/marko-vite";
2+
3+
export default {
4+
framework: "@storybook/marko-vite",
5+
stories: ["../src/**/{,*.}stories.ts"],
6+
core: {
7+
disableTelemetry: true,
8+
disableWhatsNewNotifications: true,
9+
},
10+
} satisfies StorybookConfig;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
__snapshots__
2+
coverage
3+
dist
4+
node_modules
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"$schema": "http://json.schemastore.org/stylelintrc.json",
3+
"extends": "stylelint-config-standard",
4+
"allowEmptyInput": true,
5+
"cache": true,
6+
"rules": {
7+
"import-notation": "string"
8+
}
9+
}

0 commit comments

Comments
 (0)