dp-widgets-framework 1.6.2 → 1.6.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dp-widgets-framework",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org"
@@ -43,7 +43,7 @@
43
43
  "start": "next start",
44
44
  "lint": "next lint",
45
45
  "format-all-files": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
46
- "build:rollup": "rollup -c --bundleConfigAsCjs",
46
+ "build:rollup": "rollup -c --bundleConfigAsCjs && tsc --project tsconfig.declarations.json && node -e \"const fs=require('fs'); if(fs.existsSync('dist/framework-index.d.ts')) fs.renameSync('dist/framework-index.d.ts','dist/index.d.ts');\"",
47
47
  "prepare": "npm run build:rollup",
48
48
  "prepublishOnly": "npm run build:rollup",
49
49
  "init:db": "node scripts/init-db.js",
@@ -83,6 +83,7 @@
83
83
  "chartjs-plugin-datalabels": "^2.2.0",
84
84
  "class-variance-authority": "^0.7.1",
85
85
  "clsx": "^2.1.1",
86
+ "date-fns": "^3.6.0",
86
87
  "cors": "^2.8.5",
87
88
  "dotenv": "^16.4.7",
88
89
  "express": "^4.21.2",
@@ -114,6 +115,7 @@
114
115
  "@rollup/plugin-node-resolve": "^15.3.0",
115
116
  "@rollup/plugin-terser": "^0.4.4",
116
117
  "@rollup/plugin-typescript": "^12.1.1",
118
+ "rollup-plugin-esbuild": "^6.1.1",
117
119
  "@types/lodash": "^4.17.15",
118
120
  "@types/node": "^20",
119
121
  "@types/react": "^18",
@@ -136,4 +138,4 @@
136
138
  "tailwindcss": "^3.3.0",
137
139
  "typescript": "^5"
138
140
  }
139
- }
141
+ }
@@ -1,3 +0,0 @@
1
- import type { Config } from "tailwindcss";
2
- declare const config: Config;
3
- export default config;