Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
feat: first changelog prerelease (#15)
Browse files Browse the repository at this point in the history
* build: contributors

* chore(release): 1.0.0

* build: last commit

* build: main branch and typo

* build: license
  • Loading branch information
Omar Sotillo authored Oct 21, 2021
1 parent 2df053b commit 42c5ebb
Show file tree
Hide file tree
Showing 3 changed files with 834 additions and 87 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.0.0](https://github.com/factorialco/tentaclesql/compare/v1.0.0-beta.1...v1.0.0) (2021-10-19)
67 changes: 45 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,51 @@
{
"name": "@factorialco/tentaclesql",
"version": "1.0.0-beta.1",
"description": "SQL engine from multiple sources",
"homepage": "https://github.com/factorialco/tentaclesql#readme",
"version": "1.0.0",
"main": "dist/src/executor/index.js",
"bin": {
"tentaclesql": "dist/cli.js"
},
"main": "dist/src/executor/index.js",
"license": "ISC",
"author": {
"name": "Factorial",
"email": "admin@factorial.co"
},
"contributors": [
{
"name": "Genar Trias Ortiz",
"email": "genar@acs.li"
},
{
"name": "Omar Sotillo Franco",
"email": "omarsotillofranco@gmail.com"
},
{
"name": "Ferran Basora",
"email": "fcsonline@gmail.com"
},
{
"name": "Omar Sotillo",
"email": "omar@factorial.co"
},
{
"name": "Pau Ramon Revilla",
"email": "masylum@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/factorialco/tentaclesql.git"
},
"bugs": {
"url": "https://github.com/factorialco/tentaclesql/issues"
},
"keywords": [
"cli",
"rest-api",
"sqlite"
],
"dependencies": {
"better-sqlite3": "^7.4.3",
"cli-table": "^0.3.6",
Expand Down Expand Up @@ -49,6 +89,7 @@
"simple-git-hooks": "latest",
"standard": "latest",
"standard-markdown": "latest",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.2",
"tsup": "^5.4.1",
"typescript": "^4.4.4"
Expand All @@ -65,31 +106,13 @@
"watch": "yarn build -- --watch",
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"postrelease": "yarn run release:tags && yarn run release:github && (ci-publish || yarn publish --access=public)",
"prerelease": "ya run update:check && yarn run contributors",
"prerelease": "yarn run update:check && yarn run contributors",
"release:github": "conventional-github-releaser -p angular",
"release:tags": "git push --follow-tags origin HEAD:master",
"release:tags": "git push --follow-tags origin HEAD:main",
"release": "standard-version -a",
"update:check": "ncu -- --error-level 2",
"update": "ncu -u"
},
"author": {
"name": "Factorial",
"email": "admin@factorial.co"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/factorialco/tentaclesql.git"
},
"keywords": [
"sqlite",
"rest-api",
"cli"
],
"bugs": {
"url": "https://github.com/factorialco/tentaclesql/issues"
},
"homepage": "https://github.com/factorialco/tentaclesql#readme",
"jest": {
"testMatch": [
"**/?(*.)+(spec|test).[t]s?(x)"
Expand Down
Loading

0 comments on commit 42c5ebb

Please sign in to comment.