@anolilab/lint-staged-config 2.0.1 → 2.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 +20 -0
  2. package/package.json +6 -5
  3. package/skip.js +7 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## @anolilab/lint-staged-config [2.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/lint-staged-config@2.0.1...@anolilab/lint-staged-config@2.0.2) (2023-07-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * included 'skip.js' in package.json for several packages ([1c84b33](https://github.com/anolilab/javascript-style-guide/commit/1c84b33435abc75666214632eba4566f36c78e1a))
7
+
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * **deps:** update dependency stylelint to v15.10.2 ([061c2cf](https://github.com/anolilab/javascript-style-guide/commit/061c2cff2e5b02d1decd2c01a07136cb042be7a9))
12
+ * Upgrade vite version in lint-staged-config ([ea52ad5](https://github.com/anolilab/javascript-style-guide/commit/ea52ad5e3bd672a2973f151bdf04ce6113980fce))
13
+
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * **@anolilab/package-json-utils:** upgraded to 3.0.2
19
+ * **@anolilab/semantic-release-preset:** upgraded to 6.0.2
20
+
1
21
  ## @anolilab/lint-staged-config [2.0.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/lint-staged-config@2.0.0...@anolilab/lint-staged-config@2.0.1) (2023-07-19)
2
22
 
3
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/lint-staged-config",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Shareable Lint-Staged Config for any project.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -79,6 +79,7 @@
79
79
  "types": "dist/index.d.ts",
80
80
  "files": [
81
81
  "dist",
82
+ "skip.js",
82
83
  "group",
83
84
  "README.md",
84
85
  "CHANGELOG.md",
@@ -93,13 +94,13 @@
93
94
  "test:coverage": "vitest --config ./vitest.config.ts --run --coverage"
94
95
  },
95
96
  "dependencies": {
96
- "@anolilab/package-json-utils": "3.0.1",
97
+ "@anolilab/package-json-utils": "3.0.2",
97
98
  "cross-env": "^7.0.3",
98
99
  "find-up": "5.0.0",
99
100
  "shell-quote": "^1.8.1"
100
101
  },
101
102
  "devDependencies": {
102
- "@anolilab/semantic-release-preset": "6.0.1",
103
+ "@anolilab/semantic-release-preset": "6.0.2",
103
104
  "@total-typescript/ts-reset": "^0.4.2",
104
105
  "@types/lint-staged": "^13.2.0",
105
106
  "@types/shell-quote": "^1.7.1",
@@ -122,8 +123,8 @@
122
123
  "jest": "^29.6.1",
123
124
  "prettier": "^3.0.0",
124
125
  "secretlint": "^7.0.3",
125
- "stylelint": "^15.10.1",
126
- "vite": "^4.4.4"
126
+ "stylelint": "^15.10.2",
127
+ "vite": "^4.4.7"
127
128
  },
128
129
  "engines": {
129
130
  "node": ">=18"
package/skip.js ADDED
@@ -0,0 +1,7 @@
1
+ if (process.env.SKIP_BUILD) {
2
+ // eslint-disable-next-line unicorn/no-process-exit
3
+ process.exit(0);
4
+ } else {
5
+ // eslint-disable-next-line unicorn/no-process-exit
6
+ process.exit(1);
7
+ }