Skip to content

Commit bb3b81c

Browse files
committed
3.1.4
1 parent 2de4d3c commit bb3b81c

File tree

5 files changed

+90
-21
lines changed

5 files changed

+90
-21
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
# [3.1.4](https://github.com/konstaui/konsta/compare/v3.1.3...v3.1.4) (2024-08-21)
4+
5+
### Bug Fixes
6+
7+
- **svelte:** don't remove text slot from svelte types ([#208](https://github.com/konstaui/konsta/issues/208)) ([ad6a0bd](https://github.com/konstaui/konsta/commit/ad6a0bdaa2844e925987e4ca228e0138a4fd5047))
8+
- **svelte:** fix missing touch ripple on links ([11496d6](https://github.com/konstaui/konsta/commit/11496d64e9ab31c59b9ae095a677b0ef02e16256))
9+
- **svelte:** fix vite-plugin warning ([#217](https://github.com/konstaui/konsta/issues/217)) ([927cb6f](https://github.com/konstaui/konsta/commit/927cb6f4a0b034abf27e33bbff3a5d71c0e2797c))
10+
- **svelte:** ignore svelte a11y warnings ([#215](https://github.com/konstaui/konsta/issues/215)) ([667c7a0](https://github.com/konstaui/konsta/commit/667c7a045a2e4db7e78cf966b9094fd49140f747)), closes [/svelte.dev/docs/accessibility-warnings#a11](https://github.com//svelte.dev/docs/accessibility-warnings/issues/a11)
11+
312
# [3.1.3](https://github.com/konstaui/konsta/compare/v3.1.2...v3.1.3) (2024-03-25)
413

514
### Bug Fixes

package-lock.json

Lines changed: 75 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "konsta",
33
"description": "Mobile UI components made with Tailwind CSS",
4-
"version": "3.1.3",
4+
"version": "3.1.4",
55
"private": true,
66
"license": "MIT",
77
"author": "Vladimir Kharlampidi",
@@ -45,7 +45,7 @@
4545
"eslint-config-prettier": "^8.8.0",
4646
"eslint-plugin-import": "^2.27.5",
4747
"eslint-plugin-jsx-a11y": "^6.7.1",
48-
"eslint-plugin-prettier": "^4.2.1",
48+
"eslint-plugin-prettier": "^5.2.1",
4949
"eslint-plugin-react": "^7.32.2",
5050
"eslint-plugin-react-hooks": "^4.6.0",
5151
"eslint-plugin-svelte3": "^4.0.0",

package/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "konsta",
3-
"version": "3.1.3",
3+
"version": "3.1.4",
44
"description": "Mobile UI components made with Tailwind CSS",
55
"repository": {
66
"type": "git",
@@ -16,7 +16,7 @@
1616
"engines": {
1717
"node": ">= 4.7.0"
1818
},
19-
"releaseDate": "March 25, 2024",
19+
"releaseDate": "August 21, 2024",
2020
"svelte": "./svelte/konsta-svelte.js",
2121
"exports": {
2222
"./package.json": "./package.json",
@@ -38,4 +38,4 @@
3838
"./config": "./config.js",
3939
"./config.js": "./config.js"
4040
}
41-
}
41+
}

scripts/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ async function release() {
103103
];
104104

105105
await exec.promise('git pull');
106-
await exec.promise('npm i');
106+
await exec.promise('npm i -force');
107107
await exec.promise(`cd ./package && ${cleanPackage.join(' && ')}`);
108108
await exec.promise(`npm run build`);
109109
await exec.promise('git add .');

0 commit comments

Comments
 (0)