tccd-ui 0.0.7 → 0.0.10

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -2
package/dist/index.js CHANGED
@@ -363,7 +363,7 @@ function LazyImageLoader({
363
363
  // src/components/LoadingPage.tsx
364
364
  var import_jsx_runtime8 = require("react/jsx-runtime");
365
365
  var import_meta = {};
366
- var tccd_logo = new URL("../assets/TCCD_logo.svg", import_meta.url).href;
366
+ var tccd_logo = new URL("./assets/TCCD_logo.svg", import_meta.url).href;
367
367
  var LoadingPage = () => {
368
368
  return /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(import_jsx_runtime8.Fragment, { children: [
369
369
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("style", { children: `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tccd-ui",
3
- "version": "0.0.7",
3
+ "version": "0.0.10",
4
4
  "description": "Reusable React + Tailwind components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -9,7 +9,8 @@
9
9
  "dist"
10
10
  ],
11
11
  "scripts": {
12
- "build": "tsup",
12
+ "build": "tsup && npm run copy-assets",
13
+ "copy-assets": "xcopy src\\assets dist\\assets /E /I /Y",
13
14
  "dev": "tsup --watch",
14
15
  "clean": "rm -rf dist"
15
16
  },