Skip to content

Commit

Permalink
fix: base filtering - module exports
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmarco committed Nov 1, 2024
1 parent bdfe9cf commit 0bcd4c2
Show file tree
Hide file tree
Showing 11 changed files with 300 additions and 238 deletions.
2 changes: 1 addition & 1 deletion dist/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

287 changes: 145 additions & 142 deletions dist/slotted-table.es.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/slotted-table.umd.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions global.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare module 'slotted-table';
174 changes: 101 additions & 73 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 13 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
{
"name": "slotted-table",
"version": "1.0.0",
"version": "1.0.1",
"description": "Data table with slots ready made with Vue.js 3.x ready to use",
"main": "dist/slotted-table.umd.js",
"type": "module",
"module": "dist/slotted-table.es.js",
"types": "./types/main.d.ts",
"files": [
"dist",
"src"
],
"files": ["dist"],
"scripts": {
"dev": "vite",
"build": "vite build",
Expand All @@ -26,6 +20,17 @@
"url": "git+https://github.com/jrmarco/slotted-table.git"
},
"license": "GPLv3",
"main": "./dist/slotted-table.umd.cjs",
"module": "./dist/slotted-table.es.js",
"types": "./types/main.d.ts",
"exports": {
".": {
"import": "./dist/slotted-table.es.js",
"require": "./dist/slotted-table.umd.cjs",
"types": "./types/main.d.ts"
},
"./dist/index.css": "./dist/index.css"
},
"dependencies": {
"vue": "^3.4.35"
},
Expand Down
Loading

0 comments on commit 0bcd4c2

Please sign in to comment.