react-markdown-table-ts 0.3.4 → 0.3.6

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": "react-markdown-table-ts",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
4
4
  "description": "A React component that converts structured data into Markdown table syntax and displays it within a `<pre>` tag.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -10,6 +10,8 @@
10
10
  ],
11
11
  "scripts": {
12
12
  "build": "rollup -c",
13
+ "type-check": "tsc --noEmit",
14
+ "prepublishOnly": "npm run build",
13
15
  "prepare": "npm run build",
14
16
  "lint": "gts lint",
15
17
  "clean": "gts clean",
@@ -17,9 +19,8 @@
17
19
  "fix": "gts fix",
18
20
  "pretest": "npm run compile",
19
21
  "posttest": "npm run lint",
20
- "test": "jest",
21
- "test:watch": "jest --watch",
22
- "test:coverage": "jest --coverage --coverageReporters=text-lcov",
22
+ "test": "jest --config jest.config.js",
23
+ "test:watch": "jest --config jest.config.js --watch",
23
24
  "release": "standard-version"
24
25
  },
25
26
  "keywords": [
@@ -1 +0,0 @@
1
- import '@testing-library/jest-dom';
@@ -1,2 +0,0 @@
1
- import '@testing-library/jest-dom';
2
- import '@testing-library/react';
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
File without changes
File without changes
File without changes
File without changes