tidy-table 4.0.6 → 4.0.8
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/CHANGELOG.md +9 -0
- package/README.md +3 -15
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -39,3 +39,12 @@ NPM dependency security updates.
|
|
|
39
39
|
### Changed
|
|
40
40
|
|
|
41
41
|
- Replaced/removed deprecated dependencies
|
|
42
|
+
|
|
43
|
+
## [4.0.7] - 2024-02-08
|
|
44
|
+
|
|
45
|
+
- Added third-party (got) audit override
|
|
46
|
+
|
|
47
|
+
## [4.0.8] - 2024-02-21
|
|
48
|
+
|
|
49
|
+
- Removed Unsupported releases section
|
|
50
|
+
- Deleted legacy branch
|
package/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
# Tidy Table
|
|
1
|
+
# Tidy Table
|
|
2
|
+
|
|
3
|
+
[](https://badge.fury.io/js/tidy-table) [](https://www.npmjs.com/package/tidy-table) [](https://app.travis-ci.com/github/nuxy/tidy-table) [](https://packagephobia.com/result?p=tidy-table) [](https://github.com/nuxy/tidy-table/releases)
|
|
2
4
|
|
|
3
5
|
Create a HTML table that can be sorted, selected, and post-processed.
|
|
4
6
|
|
|
@@ -204,20 +206,6 @@ Run [WebdriverIO](https://webdriver.io) E2E tests:
|
|
|
204
206
|
|
|
205
207
|
$ npm run test
|
|
206
208
|
|
|
207
|
-
## Unsupported releases
|
|
208
|
-
|
|
209
|
-
To install deprecated versions use [Bower](http://bower.io) or download the package [by tag](https://github.com/nuxy/tidy-table/tags).
|
|
210
|
-
|
|
211
|
-
### v3 (no dependencies)
|
|
212
|
-
|
|
213
|
-
$ bower install tidy-table#3
|
|
214
|
-
|
|
215
|
-
### v2 (requires [jQuery 1.8.3](http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js))
|
|
216
|
-
|
|
217
|
-
Compatible with Firefox 3.6, Chrome, Safari 5, Opera, and Internet Explorer 7+ web browsers.
|
|
218
|
-
|
|
219
|
-
$ bower install tidy-table#2
|
|
220
|
-
|
|
221
209
|
## Contributions
|
|
222
210
|
|
|
223
211
|
If you fix a bug, or have a code you want to contribute, please send a pull-request with your changes. (Note: Before committing your code please ensure that you are following the [Node.js style guide](https://github.com/felixge/node-style-guide))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tidy-table",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.8",
|
|
4
4
|
"description": "Create a HTML table that can be sorted, selected, and post-processed.",
|
|
5
5
|
"main": "src/tidy-table.js",
|
|
6
6
|
"scripts": {
|
|
@@ -47,5 +47,8 @@
|
|
|
47
47
|
"@wdio/spec-reporter": "^8.8.7",
|
|
48
48
|
"eslint": "^8.18.0",
|
|
49
49
|
"sass": "^1.53.0"
|
|
50
|
+
},
|
|
51
|
+
"overrides": {
|
|
52
|
+
"got": "^12.0.0"
|
|
50
53
|
}
|
|
51
54
|
}
|