Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
meabed committed Jan 20, 2022
1 parent 6cb0807 commit 0dd3666
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 6 deletions.
14 changes: 13 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
README.md
.*.swp
._*
.DS_Store
.git
.hg
.npmrc
.lock-wscript
.svn
.wafpickle-*
config.gypi
CVS
npm-debug.log
src
7 changes: 3 additions & 4 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
app-dist
server-dist
dist
.next
.env
.prettierignore
node_modules
src/providers/**/types/*.d.ts
src/types/modules/*.d.ts
swagger/swagger.json
4 changes: 4 additions & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
unsafe-disable-integrity-migration false
build-from-source true
depth 2
check-files true
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Change Log

## v1.0.0
- Initial release
25 changes: 25 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
The MIT License (MIT)
=====================

Copyright © `2021` `DEV.ME`

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the “Software”), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/devmehq/open-graph-extractor"
"url": "https://github.com/devmehq/devme-sdk-js"
},
"license": "MIT",
"author": "DEV.ME <[email protected]> (https://dev.me)",
Expand Down
13 changes: 13 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -e
my_dir="$(dirname "$0")"
yarn test
yarn build
git add .
git commit -am "chose: update release" || true
npm version patch
git push
git push --tags
cp package.json README.md LICENSE.md CHANGELOG.md yarn.lock ./dist/
grep -v '"prepare":' ./dist/package.json > ./dist/temp-package.json && mv -f ./dist/temp-package.json ./dist/package.json
npm publish ./dist --ignore-scripts --access public

0 comments on commit 0dd3666

Please sign in to comment.