ikoncomponents 1.7.1 → 1.7.3

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.
@@ -1,4 +1,4 @@
1
- import { getValidAccessToken } from "@/utils/token-management";
1
+ import { getValidAccessToken } from "../../token-management";
2
2
  const IKON_BASE_API_URL = "https://ikoncloud-dev.keross.com/ikon-api";
3
3
  export const uploadFilePublic = async (file) => {
4
4
  const accessToken = await getValidAccessToken(IKON_BASE_API_URL || "");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ikoncomponents",
3
- "version": "1.7.1",
3
+ "version": "1.7.3",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "css": "dist/styles.css",
@@ -8,8 +8,9 @@
8
8
  "dist"
9
9
  ],
10
10
  "scripts": {
11
+ "dev": "next dev",
11
12
  "build": "npm run build:js && npm run build:css",
12
- "build:js": "tsc -p tsconfig.json",
13
+ "build:js": "tsc -p tsconfig.build.json",
13
14
  "build:css": "postcss src/styles.css -o dist/styles.css --config postcss.config.mjs --minify",
14
15
  "clean": "rimraf dist",
15
16
  "prepublishOnly": "npm run build"
@@ -115,4 +116,4 @@
115
116
  "tailwind-merge": "^3.3.1",
116
117
  "zustand": "^5.0.10"
117
118
  }
118
- }
119
+ }