-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
76 lines (76 loc) · 1.83 KB
/
deno.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@udibo/esbuild-plugin-postcss",
"version": "0.1.3",
"exports": {
".": "./postcss.ts",
"./less": "./less.ts",
"./sass": "./sass.ts",
"./stylus": "./stylus.ts"
},
"publish": {
"include": [
"LICENSE",
"**/*.json",
"**/*.jsonc",
"**/*.md",
"**/*.ts"
],
"exclude": [
"**/*.test.ts",
"examples",
"coverage",
"node_modules"
]
},
"tasks": {
"test": {
"description": "Runs the tests.",
"command": "deno test -A --trace-leaks"
},
"test-watch": {
"description": "Runs the tests in watch mode.",
"command": "deno task test --watch"
},
"test-update": {
"description": "Runs the tests and updates the snapshots.",
"command": "deno task test -- --update"
},
"check": {
"description": "Checks the formatting and runs the linter.",
"command": "deno lint && deno fmt --check"
},
"git-rebase": {
"description": "Gets your branch up to date with master after a squash merge.",
"command": "git fetch origin main && git rebase --onto origin/main HEAD"
}
},
"exclude": [
"coverage",
"node_modules",
"examples/**/*.ts"
],
"lint": {
"exclude": ["examples/**/out"]
},
"fmt": {
"exclude": [
"examples/**/out",
"examples/**/*.css.json",
"!examples/**/*.ts"
]
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@std/async": "jsr:@std/async@1",
"@std/path": "jsr:@std/path@1",
"@std/testing": "jsr:@std/testing@1",
"esbuild": "npm:esbuild@^0.24",
"postcss": "npm:postcss@8",
"postcss-modules": "npm:postcss-modules@6",
"sass": "npm:sass@^1.82",
"stylus": "npm:stylus@^0.64",
"less": "npm:less@^4.2",
"autoprefixer": "npm:autoprefixer@10",
"tailwindcss": "npm:tailwindcss@^3.4"
}
}