@frsource/autoresize-textarea 1.0.0 → 1.1.0
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/README.md +4 -4
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -35,10 +35,10 @@
|
|
|
35
35
|
<br>
|
|
36
36
|
<i>Tiny library which make your textareas fluid.
|
|
37
37
|
<br>Mobile & desktop-friendly
|
|
38
|
-
<br>Performant & small bundle size
|
|
39
|
-
<br>Published as separate bundles for JS ES5 or modern browsers thanks to <a href="https://www.npmjs.com/package/microbundle">microbundle</a
|
|
40
|
-
<br>Written completely in <a href="https://www.typescriptlang.org">typescript</a
|
|
41
|
-
<br>Published under
|
|
38
|
+
<br>Performant & with small bundle size (less than 370B!)
|
|
39
|
+
<br>Published as separate bundles for JS ES5 or modern browsers thanks to <a href="https://www.npmjs.com/package/microbundle">microbundle</a>
|
|
40
|
+
<br>Written completely in <a href="https://www.typescriptlang.org">typescript</a></i>
|
|
41
|
+
<br>Published under <a href="https://opensource.org/licenses/MIT" target="_blank">MIT</a> license</i>
|
|
42
42
|
<br>
|
|
43
43
|
<br>
|
|
44
44
|
</p>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frsource/autoresize-textarea",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Minimalistic plugin to autosize your textareas! 💪",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"main": "./dist/index.cjs",
|
|
12
12
|
"module": "./dist/index.es.js",
|
|
13
13
|
"unpkg": "./dist/index.umd.js",
|
|
14
|
+
"types": "./dist/indnex.d.ts",
|
|
14
15
|
"scripts": {
|
|
15
16
|
"start": "yarn clean && microbundle watch",
|
|
16
17
|
"build": "yarn clean && microbundle --compress",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"@semantic-release/changelog": "^6.0.1",
|
|
47
48
|
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
48
49
|
"@semantic-release/git": "^10.0.1",
|
|
50
|
+
"@semantic-release/github": "^8.0.2",
|
|
49
51
|
"@semantic-release/npm": "^9.0.0",
|
|
50
52
|
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
51
53
|
"@typescript-eslint/eslint-plugin": "^5.12.1",
|