Skip to content

Commit 9c0937d

Browse files
committed
Update website
1 parent 536fd98 commit 9c0937d

File tree

364 files changed

+6976
-3499
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

364 files changed

+6976
-3499
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
"@master/css-renderer": "workspace:^",
2828
"@master/eslint-plugin-css": "workspace:^",
2929
"@swc-node/jest": "^1.6.8",
30-
"@techor/fs": "^2.5.19",
31-
"@techor/glob": "^2.5.19",
32-
"@techor/jest": "^2.5.19",
33-
"@techor/jest-dom": "^2.5.19",
34-
"@techor/pack": "^2.5.19",
35-
"@techor/repo": "^2.5.19",
36-
"@techor/version": "^2.5.19",
30+
"@techor/fs": "^2.5.20",
31+
"@techor/glob": "^2.5.20",
32+
"@techor/jest": "^2.5.20",
33+
"@techor/jest-dom": "^2.5.20",
34+
"@techor/pack": "^2.5.20",
35+
"@techor/repo": "^2.5.20",
36+
"@techor/version": "^2.5.20",
3737
"@types/jest": "^29.5.8",
3838
"@types/node": "^20.4.0",
3939
"@types/shuffle-array": "^1.0.5",

packages/class-variant/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "class-variant",
33
"scripts": {
4-
"build": "techor pack",
5-
"dev": "pnpm run build --watch --no-declare",
4+
"build": "techor pack --declare",
5+
"dev": "pnpm run build --watch",
66
"type-check": "tsc --noEmit",
77
"lint": "eslint src",
88
"test": "jest"

packages/css/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@master/css",
33
"scripts": {
4-
"build": "techor pack --external @master/css-renderer @master/css-extractor",
5-
"dev": "pnpm run build --watch --no-declare",
4+
"build": "techor pack --declare --external @master/css-renderer @master/css-extractor",
5+
"dev": "pnpm run build --watch",
66
"test": "jest",
77
"type-check": "tsc --noEmit",
88
"lint": "eslint src"

packages/eslint-plugin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@master/eslint-plugin-css",
33
"scripts": {
4-
"build": "techor pack \"src/**/*.ts\"",
5-
"dev": "pnpm run build --watch --no-declare",
4+
"build": "techor pack \"src/**/*.ts\" --declare",
5+
"dev": "pnpm run build --watch",
66
"test": "jest",
77
"type-check": "tsc --noEmit",
88
"lint": "eslint src"
@@ -41,7 +41,7 @@
4141
"dependencies": {
4242
"@master/css": "workspace:^",
4343
"@master/css-validator": "workspace:^",
44-
"explore-config": "^2.5.19",
44+
"explore-config": "^2.5.20",
4545
"synckit": "^0.8.5"
4646
},
4747
"devDependencies": {

packages/extractor.vite/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@master/css-extractor.vite",
33
"scripts": {
4-
"build": "techor pack --platform node",
5-
"dev": "pnpm run build --watch --no-declare",
4+
"build": "techor pack --platform node --declare",
5+
"dev": "pnpm run build --watch",
66
"type-check": "tsc --noEmit",
77
"lint": "eslint src",
88
"test": "jest --workerThreads"

packages/extractor.webpack/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@master/css-extractor.webpack",
33
"scripts": {
4-
"build": "techor pack --platform node",
5-
"dev": "pnpm run build --watch --no-declare",
4+
"build": "techor pack --platform node --declare",
5+
"dev": "pnpm run build --watch",
66
"type-check": "tsc --noEmit",
77
"lint": "eslint src"
88
},

packages/extractor/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@master/css-extractor",
33
"scripts": {
4-
"build": "techor pack --platform node",
5-
"dev": "pnpm run build --watch --no-declare",
4+
"build": "techor pack --platform node --declare",
5+
"dev": "pnpm run build --watch",
66
"lint": "eslint ./src",
77
"type-check": "tsc --noEmit",
88
"test": "jest --workerThreads"
@@ -67,11 +67,11 @@
6767
"dependencies": {
6868
"@master/css": "workspace:^",
6969
"@master/css-validator": "workspace:^",
70-
"@techor/extend": "^2.5.19",
71-
"@techor/glob": "^2.5.19",
72-
"@techor/log": "^2.5.19",
70+
"@techor/extend": "^2.5.20",
71+
"@techor/glob": "^2.5.20",
72+
"@techor/log": "^2.5.20",
7373
"chokidar": "^3.5.3",
74-
"explore-config": "^2.5.19",
74+
"explore-config": "^2.5.20",
7575
"minimatch": "^9.0.1"
7676
},
7777
"devDependencies": {

packages/language-server/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@master/css-language-server",
33
"scripts": {
4-
"build": "techor pack --platform node",
5-
"dev": "pnpm run build --watch --no-declare",
4+
"build": "techor pack --platform node --declare",
5+
"dev": "pnpm run build --watch",
66
"type-check": "tsc --noEmit",
77
"lint": "eslint src",
88
"test": "jest"
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"@master/css": "workspace:^",
1515
"@master/css-language-service": "workspace:^",
16-
"explore-config": "^2.5.19",
16+
"explore-config": "^2.5.20",
1717
"js-beautify": "^1.14.7",
1818
"minimatch": "^9.0.1",
1919
"vscode-languageserver": "^7.0.0",

packages/language-service/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@master/css-language-service",
33
"scripts": {
4-
"build": "techor pack --platform node",
5-
"dev": "pnpm run build --watch --no-declare",
4+
"build": "techor pack --platform node --declare",
5+
"dev": "pnpm run build --watch",
66
"type-check": "tsc --noEmit",
77
"lint": "eslint src"
88
},

packages/normal.css/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@master/normal.css",
33
"scripts": {
4-
"build": "techor pack \"./src/*.css\" --no-declare --bundle",
4+
"build": "techor pack --bundle",
55
"dev": "npm run build -- --watch"
66
},
77
"license": "MIT",
@@ -30,8 +30,8 @@
3030
"lightweight",
3131
"antialiased"
3232
],
33-
"main": "./dist/index.bundle.css",
34-
"style": "./dist/index.bundle.css",
33+
"main": "./dist/index.css",
34+
"style": "./dist/index.css",
3535
"publishConfig": {
3636
"access": "public"
3737
}

0 commit comments

Comments
 (0)