Skip to content

Commit

Permalink
Set 0.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ohsayan committed Dec 28, 2023
1 parent 075a4db commit 2666485
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
# Install dependencies using Yarn
- run: yarn install --frozen-lockfile
- run: yarn build
# Publish the package to npm
- run: yarn publish
env:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
.devcontainer
dist
dist
.vscode
3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skytable",
"version": "1.0.0",
"name": "skytable-node",
"version": "0.1.2",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.mjs",
Expand All @@ -13,6 +13,12 @@
"bugs": {
"url": "https://github.com/skytable/client-nodejs/issues"
},
"files": [
"dist/",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "tsc",
Expand Down

0 comments on commit 2666485

Please sign in to comment.