dp-widgets-framework 1.6.2 → 1.6.4

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.4",
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",
@@ -84,6 +84,7 @@
84
84
  "class-variance-authority": "^0.7.1",
85
85
  "clsx": "^2.1.1",
86
86
  "cors": "^2.8.5",
87
+ "date-fns": "^3.6.0",
87
88
  "dotenv": "^16.4.7",
88
89
  "express": "^4.21.2",
89
90
  "express-validator": "^7.2.1",
@@ -108,6 +109,7 @@
108
109
  },
109
110
  "devDependencies": {
110
111
  "@eslint/eslintrc": "^3",
112
+ "@rollup/plugin-alias": "^5.1.1",
111
113
  "@rollup/plugin-babel": "^6.0.4",
112
114
  "@rollup/plugin-commonjs": "^28.0.1",
113
115
  "@rollup/plugin-json": "^6.1.0",
@@ -119,6 +121,7 @@
119
121
  "@types/react": "^18",
120
122
  "@types/react-dom": "^18",
121
123
  "autoprefixer": "^10.0.1",
124
+ "esbuild": "^0.27.2",
122
125
  "eslint": "^8.43.0",
123
126
  "eslint-config-next": "15.1.6",
124
127
  "eslint-config-node": "^4.1.0",
@@ -130,10 +133,11 @@
130
133
  "postcss": "^8",
131
134
  "prettier": "^2.8.8",
132
135
  "rollup": "^4.27.3",
136
+ "rollup-plugin-esbuild": "^6.1.1",
133
137
  "rollup-plugin-peer-deps-external": "^2.2.4",
134
138
  "rollup-plugin-postcss": "^4.0.2",
135
139
  "rollup-plugin-visualizer": "^5.12.0",
136
140
  "tailwindcss": "^3.3.0",
137
141
  "typescript": "^5"
138
142
  }
139
- }
143
+ }
@@ -1,3 +0,0 @@
1
- import type { Config } from "tailwindcss";
2
- declare const config: Config;
3
- export default config;