Skip to content

Commit

Permalink
release v2.0.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Oct 11, 2023
1 parent d551249 commit 5d50575
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build

# mrt
packages/mantine-react-table/locales
packages/mantine-react-table/mrt.css
packages/mantine-react-table/styles.css
.cache
/dist
dist
Expand Down
2 changes: 1 addition & 1 deletion apps/mantine-react-table-docs/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import '../styles/globals.css';
import '@mantine/code-highlight/styles.css';
import '@mantine/core/styles.css';
import '@mantine/dates/styles.css';
import 'mantine-react-table/mrt.css';
import 'mantine-react-table/styles.css';
import { useState } from 'react';
import { type AppProps } from 'next/app';
import Head from 'next/head';
Expand Down
8 changes: 4 additions & 4 deletions packages/mantine-react-table/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.0-alpha.0",
"version": "2.0.0-alpha.1",
"license": "MIT",
"name": "mantine-react-table",
"description": "A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.",
Expand Down Expand Up @@ -29,17 +29,17 @@
"files": [
"dist",
"locales",
"mrt.css",
"styles.css",
"src"
],
"size-limit": [
{
"path": "dist/cjs/index.js",
"limit": "53 KB"
"limit": "58 KB"
},
{
"path": "dist/esm/mantine-react-table.esm.js",
"limit": "52 KB"
"limit": "56 KB"
}
],
"engines": {
Expand Down
3 changes: 2 additions & 1 deletion packages/mantine-react-table/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export default [
'@tanstack/match-sorter-utils',
'@tanstack/react-table',
'@tanstack/react-virtual',
'clsx',
'dayjs',
'react',
],
Expand Down Expand Up @@ -62,7 +63,7 @@ export default [
plugins: [
copy({
targets: [
{ src: 'dist/cjs/index.css', dest: './', rename: 'mrt.css' },
{ src: 'dist/cjs/index.css', dest: './', rename: 'styles.css' },
],
verbose: true,
hook: 'buildStart',
Expand Down

0 comments on commit 5d50575

Please sign in to comment.