-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from data-depot/staging
chore: release
- Loading branch information
Showing
10 changed files
with
86 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/src/ @deanban @walleXD | ||
/package.json @walleXD | ||
/.github/workflows/ @walleXD | ||
/config/ @walleXD | ||
/.eslintrc.js @walleXD | ||
/.gitignore @walleXD | ||
/.nvmrc @walleXD | ||
/jest.config.js @walleXD | ||
/LICENSE @walleXD @deanban | ||
/README.md @walleXD @deanban | ||
/release.config.js @walleXD | ||
/tsconfig.json @walleXD |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"version": "0.1.6", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
|
@@ -9,6 +10,14 @@ | |
"engines": { | ||
"node": ">=10" | ||
}, | ||
"keywords": [ | ||
"soda", | ||
"opendata", | ||
"socrata", | ||
"rxjs", | ||
"typescript", | ||
"javascript" | ||
], | ||
"scripts": { | ||
"start": "tsdx watch", | ||
"build": "tsdx build", | ||
|
@@ -49,6 +58,7 @@ | |
"author": "[email protected]", | ||
"repository": "https://github.com/data-depot/soda-ts", | ||
"homepage": "https://github.com/data-depot/soda-ts", | ||
"description": "Seamlessly interact with OpenData APIs in TS or JS", | ||
"module": "dist/soda-ts.esm.js", | ||
"devDependencies": { | ||
"@commitlint/config-conventional": "^8.3.4", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
module.exports = { | ||
"dryRun": false, | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
dryRun: false, | ||
branches: ['master'], | ||
plugins: [ | ||
'@semantic-release/commit-analyzer', | ||
'@semantic-release/release-notes-generator', | ||
[ | ||
"@semantic-release/changelog", | ||
'@semantic-release/changelog', | ||
{ | ||
"changelogFile": "docs/CHANGELOG.md" | ||
changelogFile: 'docs/CHANGELOG.md' | ||
} | ||
], | ||
"@semantic-release/npm", | ||
"@semantic-release/github", | ||
'@semantic-release/npm', | ||
'@semantic-release/github', | ||
[ | ||
"@semantic-release/git", | ||
'@semantic-release/git', | ||
{ | ||
"assets": [ | ||
"docs/CHANGELOG.md", | ||
"package.json", | ||
"package-lock.json" | ||
assets: [ | ||
'docs/CHANGELOG.md', | ||
'package.json', | ||
'package-lock.json' | ||
], | ||
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" | ||
message: | ||
// eslint-disable-next-line no-template-curly-in-string | ||
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}' | ||
} | ||
] | ||
] | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters