lost-sia 2.0.1-alpha1 → 2.0.1-alpha2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lost-sia",
|
|
3
|
-
"version": "2.0.1-
|
|
3
|
+
"version": "2.0.1-alpha2",
|
|
4
4
|
"description": "Single Image Annotation Tool",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "l3p-cv/lost-sia",
|
|
@@ -26,10 +26,13 @@
|
|
|
26
26
|
"./utils": {
|
|
27
27
|
"import": "./src/utils/index.js",
|
|
28
28
|
"require": "./src/utils/index.js"
|
|
29
|
-
}
|
|
29
|
+
},
|
|
30
|
+
"./styles/variables": "./src/styles/_variables.scss",
|
|
31
|
+
"./styles/coreui": "./src/styles/coreui.scss"
|
|
30
32
|
},
|
|
31
33
|
"files": [
|
|
32
|
-
"src"
|
|
34
|
+
"src",
|
|
35
|
+
"styles"
|
|
33
36
|
],
|
|
34
37
|
"scripts": {
|
|
35
38
|
"build": "vite build",
|
package/src/scss/_custom.scss
DELETED
package/src/scss/_fixes.scss
DELETED
package/src/scss/_layout.scss
DELETED
package/src/scss/style.scss
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
// // If you want to override variables do it here
|
|
2
|
-
// @import 'variables';
|
|
3
|
-
|
|
4
|
-
// // Import CoreUI styles
|
|
5
|
-
// @import '@coreui/coreui/scss/coreui.scss';
|
|
6
|
-
|
|
7
|
-
// @import "layout";
|
|
8
|
-
|
|
9
|
-
// // Some temp fixes
|
|
10
|
-
// @import 'fixes';
|
|
11
|
-
|
|
12
|
-
// If you want to add something do it here
|
|
13
|
-
@import "custom";
|