@adobe/remark-gridtables 1.0.0 → 1.0.2

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +2 -0
  3. package/package.json +15 -12
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.0.2](https://github.com/adobe/remark-gridtables/compare/v1.0.1...v1.0.2) (2023-01-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([#25](https://github.com/adobe/remark-gridtables/issues/25)) ([0ee8059](https://github.com/adobe/remark-gridtables/commit/0ee8059abe9a766a929a42583b3da7aeb1e6fcfa))
7
+
8
+ ## [1.0.1](https://github.com/adobe/remark-gridtables/compare/v1.0.0...v1.0.1) (2023-01-18)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * upgrade mdast-util-gridtables to 1.0.5 ([#23](https://github.com/adobe/remark-gridtables/issues/23)) ([ed92f23](https://github.com/adobe/remark-gridtables/commit/ed92f2327a6e9356d4fd450d0a4e02f5ec07e32c))
14
+
1
15
  # 1.0.0 (2022-10-07)
2
16
 
3
17
 
package/README.md CHANGED
@@ -58,6 +58,8 @@ const outputMarkdown = unified()
58
58
  .stringify(mdast);
59
59
  ```
60
60
 
61
+ Also see the [test/example.js](./test/example.js) on how to generate HTML tables.
62
+
61
63
  ## Overview
62
64
 
63
65
  GridTables look like this:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/remark-gridtables",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Remark Gridtables",
5
5
  "keywords": [
6
6
  "remark",
@@ -32,29 +32,32 @@
32
32
  "reporter-options": "configFile=.mocha-multi.json"
33
33
  },
34
34
  "dependencies": {
35
- "@adobe/mdast-util-gridtables": "^1.0.0",
36
- "@adobe/micromark-extension-gridtables": "^1.0.1"
35
+ "@adobe/mdast-util-gridtables": "1.0.6",
36
+ "@adobe/micromark-extension-gridtables": "1.0.1"
37
37
  },
38
38
  "devDependencies": {
39
- "@semantic-release/changelog": "6.0.1",
39
+ "@semantic-release/changelog": "6.0.2",
40
40
  "@semantic-release/git": "10.0.1",
41
- "@semantic-release/npm": "9.0.1",
41
+ "@semantic-release/npm": "9.0.2",
42
42
  "c8": "7.12.0",
43
- "eslint": "8.24.0",
43
+ "eslint": "8.32.0",
44
44
  "eslint-config-airbnb-base": "15.0.0",
45
45
  "eslint-plugin-header": "3.1.1",
46
- "eslint-plugin-import": "2.26.0",
47
- "husky": "8.0.1",
46
+ "eslint-plugin-import": "2.27.5",
47
+ "husky": "8.0.3",
48
48
  "junit-report-builder": "3.0.1",
49
- "lint-staged": "13.0.3",
49
+ "lint-staged": "13.1.0",
50
50
  "mdast-builder": "1.1.1",
51
- "mocha": "10.0.0",
51
+ "mocha": "10.2.0",
52
52
  "mocha-multi-reporters": "1.5.1",
53
+ "rehype-format": "4.0.1",
54
+ "rehype-stringify": "9.0.3",
53
55
  "remark-parse": "10.0.1",
56
+ "remark-rehype": "10.1.0",
54
57
  "remark-stringify": "10.0.2",
55
- "semantic-release": "19.0.5",
58
+ "semantic-release": "20.1.0",
56
59
  "unified": "10.1.2",
57
- "unist-util-visit": "4.1.1"
60
+ "unist-util-visit": "4.1.2"
58
61
  },
59
62
  "lint-staged": {
60
63
  "*.js": "eslint",