Skip to content

Commit c232e48

Browse files
committed
release 0.9.8
1 parent fa04bbe commit c232e48

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cypress-wait-frames",
3-
"version": "0.9.4",
3+
"version": "0.9.8",
44
"private": false,
55
"description": "Cypress command to correctly wait for any CSS/DOM properties to be idle after n frames.",
66
"keywords": [
@@ -35,7 +35,7 @@
3535
"dist/*"
3636
],
3737
"scripts": {
38-
"build": "rm -rf dist && tsc && vite build",
38+
"build": "tsc && vite build",
3939
"postbuild": "tsc src/types.ts --declaration --emitDeclarationOnly --outFile dist/index.d.ts",
4040
"dev": "cypress open --component",
4141
"prepare": "husky install",

tsconfig.json

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
2-
"compilerOptions": {
3-
"target": "ES2015",
4-
"lib": ["DOM", "DOM.Iterable", "ES2015"],
5-
"esModuleInterop": true,
6-
"strict": true,
7-
"module": "ES2015",
8-
"moduleResolution": "Node",
9-
"noEmit": true,
10-
"jsx": "react-jsx",
11-
"types": ["cypress", "node"]
12-
},
13-
"include": ["src", "cypress", "tests"]
2+
"compilerOptions": {
3+
"target": "ES2015",
4+
"lib": ["DOM", "DOM.Iterable", "ES2015"],
5+
"esModuleInterop": true,
6+
"strict": true,
7+
"outDir": "dist",
8+
"module": "ES2015",
9+
"moduleResolution": "Node",
10+
"noEmit": true,
11+
"jsx": "react-jsx",
12+
"types": ["cypress", "node"]
13+
},
14+
"include": ["src", "cypress", "tests"]
1415
}

vite.config.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ export default defineConfig({
44
build: {
55
lib: {
66
entry: 'src/index.ts',
7-
name: 'CypressWaitFrames',
87
formats: ['es', 'cjs'],
98
fileName: 'index',
109
},

0 commit comments

Comments
 (0)