@reactufy/rebootui 1.0.4 → 1.0.5
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,27 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reactufy/rebootui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "A modern React component library built on Bootstrap",
|
|
5
|
-
"main": "./
|
|
6
|
-
"module": "./
|
|
7
|
-
"types": "./
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
|
-
"development": "./src/index.ts",
|
|
12
11
|
"import": "./dist/index.mjs",
|
|
13
12
|
"require": "./dist/index.js"
|
|
14
13
|
},
|
|
15
14
|
"./dist/bootstrap.css": "./dist/bootstrap.css",
|
|
16
15
|
"./dist/rebootui-overrides.css": "./dist/rebootui-overrides.css",
|
|
17
16
|
"./dist/rebootui-complete.css": "./dist/rebootui-complete.css",
|
|
18
|
-
"./
|
|
19
|
-
"./assets/icons/icons.svg": "./src/assets/icons/icons.svg"
|
|
17
|
+
"./assets/icons/icons.svg": "./dist/assets/icons/icons.svg"
|
|
20
18
|
},
|
|
21
19
|
"files": [
|
|
22
20
|
"dist",
|
|
23
|
-
"README.md"
|
|
24
|
-
"src/assets"
|
|
21
|
+
"README.md"
|
|
25
22
|
],
|
|
26
23
|
"keywords": [
|
|
27
24
|
"react",
|
|
@@ -51,7 +48,9 @@
|
|
|
51
48
|
"scripts": {
|
|
52
49
|
"build:js": "vite build && tsc --project tsconfig.build.json",
|
|
53
50
|
"build:css": "npx sass --load-path=../../node_modules src/styles/bootstrap.scss dist/bootstrap.css && npx sass --load-path=../../node_modules src/styles/rebootui-overrides.scss dist/rebootui-overrides.css && npx sass --load-path=../../node_modules src/styles/rebootui-complete.scss dist/rebootui-complete.css",
|
|
54
|
-
"build": "
|
|
51
|
+
"build:assets": "node scripts/copy-assets.mjs",
|
|
52
|
+
"build": "npm run build:js && npm run build:css && npm run build:assets",
|
|
53
|
+
"prepublishOnly": "npm run build",
|
|
55
54
|
"dev": "vite build --watch"
|
|
56
55
|
},
|
|
57
56
|
"repository": {
|
|
File without changes
|