This repository was archived by the owner on Oct 18, 2024. It is now read-only.
File tree 4 files changed +18
-22
lines changed
4 files changed +18
-22
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ const esbuild = require('esbuild');
6
6
await Promise . all ( [
7
7
esbuild . build ( {
8
8
...cjsConfig ,
9
- outfile : 'lib /index.cjs.js' ,
9
+ outfile : 'dist /index.cjs.js' ,
10
10
} ) ,
11
11
12
12
esbuild . build ( {
13
13
...esmConfig ,
14
- outdir : 'lib ' ,
14
+ outdir : 'dist ' ,
15
15
} ) ,
16
16
] ) ;
17
17
} catch ( error ) {
Original file line number Diff line number Diff line change 2
2
"name" : " @superviz/sdk" ,
3
3
"version" : " 0.0.0-development" ,
4
4
"description" : " SuperViz SDK" ,
5
- "main" : " ./lib /index.js" ,
6
- "types" : " ./lib /index.d.ts" ,
5
+ "main" : " ./dist /index.js" ,
6
+ "types" : " ./dist /index.d.ts" ,
7
7
"exports" : {
8
- "import" : " ./lib /index.js" ,
9
- "require" : " ./lib /index.cjs.js"
8
+ "import" : " ./dist /index.js" ,
9
+ "require" : " ./dist /index.cjs.js"
10
10
},
11
11
"files" : [
12
- " lib "
12
+ " dist "
13
13
],
14
14
"scripts" : {
15
15
"prepare" : " husky install" ,
Original file line number Diff line number Diff line change 5
5
--sv-primary : 98 , 16 , 204 ;
6
6
}
7
7
8
- html , body {
8
+ html ,
9
+ body {
9
10
width : 100% ;
10
11
height : 100% ;
11
12
overflow : hidden;
@@ -46,14 +47,14 @@ html, body {
46
47
display : none;
47
48
}
48
49
49
-
50
50
/* Presence Mouse */
51
51
52
52
.pointer-mouse {
53
53
display : flex;
54
- height : 17 px ;
55
- width : 17 px ;
54
+ height : 15 px ;
55
+ width : 16 px ;
56
56
background-image : url (https://production.cdn.superviz.com/static/pointers/0.svg);
57
+ background-repeat : no-repeat;
57
58
}
58
59
59
60
.mouse-user-name {
@@ -76,4 +77,4 @@ html, body {
76
77
display : block;
77
78
z-index : 2 ;
78
79
transition : all 150ms linear, opacity 100s ease-in;
79
- }
80
+ }
Original file line number Diff line number Diff line change 3
3
"rootDirs" : [" ./src" , " ." ],
4
4
"target" : " ES2020" ,
5
5
"module" : " ES2020" ,
6
- "outDir" : " ./lib " ,
6
+ "outDir" : " ./dist " ,
7
7
"lib" : [" ES2020" , " DOM" ],
8
8
"preserveWatchOutput" : true ,
9
9
"emitDeclarationOnly" : true ,
12
12
"moduleResolution" : " Node" ,
13
13
"experimentalDecorators" : true ,
14
14
"skipLibCheck" : true ,
15
- "allowJs" : true ,
15
+ "allowJs" : true
16
16
},
17
- "include" : [
18
- " ./src"
19
- ],
20
- "exclude" : [
21
- " ./src/**/*.test.ts" ,
22
- " node_modules"
23
- ]
24
- }
17
+ "include" : [" ./src" ],
18
+ "exclude" : [" ./src/**/*.test.ts" , " node_modules" ]
19
+ }
You can’t perform that action at this time.
0 commit comments