From b6f025892649fb85269702409ed5e734f7cef1b0 Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Wed, 12 May 2021 10:12:27 +0800 Subject: [PATCH] Update README For republishing. --- .gitignore | 1 + .npmignore | 11 +++++++++++ README.md | 6 +++++- package.json | 2 +- 4 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 .npmignore diff --git a/.gitignore b/.gitignore index 4c9d7c3..787e0fc 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ .DS_Store node_modules dist +.idea/ diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..1980324 --- /dev/null +++ b/.npmignore @@ -0,0 +1,11 @@ +src/ +node_modules/ +.editorconfig/ +cypress/ +cypress.json/ +jest.config.js/ +publish.sh +tsconfig.json/ +yarn.lock/ +test/ + diff --git a/README.md b/README.md index 2db757a..43c7262 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,11 @@ Extract form values through the DOM. ## Installation -The library is not yet out on any package manager. Installing through the URL is the preferred way. +The package can be found on: + +- [Modal Pack](https://js.pack.modal.sh) +- [npm](https://npmjs.com/package/formxtr) +- [GitHub Package Registry](https://github.com/TheoryOfNekomata/formxtr/packages/784699) ## Usage diff --git a/package.json b/package.json index b481515..95a586e 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.1.0", + "version": "0.1.1", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts",