We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1571ad9 commit 0c52adcCopy full SHA for 0c52adc
.github/workflows/release.yml
@@ -8,7 +8,7 @@ on:
8
types: [created]
9
10
jobs:
11
- build:
+ test:
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v4
@@ -19,7 +19,7 @@ jobs:
19
- run: npm test
20
21
publish-npm:
22
- needs: build
+ needs: test
23
24
25
package.json
@@ -19,6 +19,9 @@
"delay",
"array"
],
+ "files": [
+ "dist"
+ ],
"scripts": {
26
"test": "uvu",
27
"lint": "oxlint",
@@ -28,7 +31,7 @@
28
31
"exports": {
29
32
"require": "./dist/css-time-sort.cjs",
30
33
"default": "./dist/css-time-sort.modern.js",
- "types": "./dist/css-time-sort.d.ts"
34
+ "types": "./dist/index.d.ts"
35
},
36
"types": "./dist/index.d.ts",
37
"devDependencies": {
0 commit comments