Skip to content

Commit d46df1b

Browse files
committed
Dependency updates + Docs cleanup + Release prep
1 parent a880fa4 commit d46df1b

13 files changed

+872
-558
lines changed

.editorconfig

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
#-------------------------------------------------------------------------------
2-
#
3-
# EditorConfig, http://EditorConfig.org
4-
#
5-
#-------------------------------------------------------------------------------
6-
71
root = true
82

93
[*]

.eslintignore

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
#-------------------------------------------------------------------------------
2-
#
3-
# ESLint Ignore Configuration, https://eslint.org/docs/user-guide/configuring#eslintignore
4-
#
5-
#-------------------------------------------------------------------------------
6-
71
# Don't lint fixtures used in testing that must retain current configuration
82
/src/acceptance/fixtures/
93

.eslintrc.js

-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
//------------------------------------------------------------------------------
2-
//
3-
// ESLint Configuration, https://eslint.org/docs/user-guide/configuring
4-
//
5-
// Based on https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/README.md
6-
//
7-
// - https://www.npmjs.com/package/@typescript-eslint/eslint-plugin
8-
// - https://www.npmjs.com/package/@typescript-eslint/parser
9-
// - https://www.npmjs.com/package/eslint-config-prettier
10-
// - https://www.npmjs.com/package/eslint-plugin-jest
11-
// - https://www.npmjs.com/package/eslint-plugin-promise
12-
// - https://www.npmjs.com/package/eslint-plugin-security-node
13-
//
14-
//------------------------------------------------------------------------------
15-
161
module.exports = {
172
root: true,
183
parser: "@typescript-eslint/parser",

.gitattributes

-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
#-------------------------------------------------------------------------------
2-
#
3-
# Git Ignore Config, https://git-scm.com/docs/gitattributes
4-
#
5-
#-------------------------------------------------------------------------------
6-
71
* text=auto eol=lf

.gitignore

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
#-------------------------------------------------------------------------------
2-
#
3-
# Git Ignore Config, https://git-scm.com/docs/gitignore
4-
#
5-
#-------------------------------------------------------------------------------
6-
71
# Keep this file even if directory has been ignored
82
!.keep
93

.huskyrc.js

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
//------------------------------------------------------------------------------
2-
//
3-
// Husky Configuration, https://github.com/typicode/husky
4-
//
5-
//------------------------------------------------------------------------------
6-
71
module.exports = {
82
hooks: {
93
"pre-commit": "yarn format && yarn test",

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.*
1+
12.18

.prettierignore

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
#-------------------------------------------------------------------------------
2-
#
3-
# Prettier Ignores, https://prettier.io/docs/en/ignore.html
4-
#
5-
#-------------------------------------------------------------------------------
6-
71
# Don't lint fixtures used in testing that must retain current configuration
82
/src/acceptance/fixtures/
93

.prettierrc.yml

-6
This file was deleted.

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
Releases ordered so that the most recent are displayed at the top, with the currently being developed release at the top, labeled as **In Development**. This release will be given a number once it is ready to be released. Each release can contain both a **Features and Improvements** and **Bug Fixes** sections.
44

5-
## In Development
5+
## [1.17.0](https://github.com/dbtedman/postcss-prefixwrap/releases/tag/1.17.0)
66

77
### Features and Improvements
88

99
- Dependency updates
10+
- Documentation refactor
1011

1112
## [1.16.0](https://github.com/dbtedman/postcss-prefixwrap/releases/tag/1.16.0)
1213

jest.config.js

-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
//------------------------------------------------------------------------------
2-
//
3-
// Jest Configuration, https://jestjs.io/docs/en/configuration
4-
//
5-
//------------------------------------------------------------------------------
6-
71
module.exports = {
82
roots: ["<rootDir>/src"],
93
transform: {

package.json

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-prefixwrap",
3-
"version": "1.16.0",
3+
"version": "1.17.0",
44
"description": "A PostCSS plugin that is used to wrap css styles with a css selector to constrain their affect on parent elements in a page.",
55
"license": "MIT",
66
"author": {
@@ -35,23 +35,24 @@
3535
"postcss": "*"
3636
},
3737
"devDependencies": {
38-
"@types/jest": "26.0.4",
39-
"@types/node": "14.0.23",
40-
"@typescript-eslint/eslint-plugin": "3.6.1",
41-
"@typescript-eslint/parser": "3.6.1",
42-
"codecov": "3.7.1",
43-
"eslint": "7.4.0",
38+
"@babel/core": "7.11.6",
39+
"@types/jest": "26.0.13",
40+
"@types/node": "14.6.4",
41+
"@typescript-eslint/eslint-plugin": "4.0.1",
42+
"@typescript-eslint/parser": "4.0.1",
43+
"codecov": "3.7.2",
44+
"eslint": "7.8.1",
4445
"eslint-config-prettier": "6.11.0",
4546
"eslint-plugin-import": "2.22.0",
46-
"eslint-plugin-jest": "23.18.0",
47+
"eslint-plugin-jest": "24.0.0",
4748
"eslint-plugin-promise": "4.2.1",
4849
"eslint-plugin-security-node": "1.0.12",
4950
"husky": "4.2.5",
50-
"jest": "26.1.0",
51+
"jest": "26.4.2",
5152
"postcss": "7.0.32",
52-
"prettier": "2.0.5",
53-
"ts-jest": "26.1.3",
54-
"ts-node": "8.10.2",
55-
"typescript": "3.9.7"
53+
"prettier": "2.1.1",
54+
"ts-jest": "26.3.0",
55+
"ts-node": "9.0.0",
56+
"typescript": "4.0.2"
5657
}
5758
}

0 commit comments

Comments
 (0)