Skip to content

Commit 2666485

Browse files
committed
Set 0.1.2 release
1 parent 075a4db commit 2666485

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
registry-url: 'https://registry.npmjs.org'
1515
# Install dependencies using Yarn
1616
- run: yarn install --frozen-lockfile
17+
- run: yarn build
1718
# Publish the package to npm
1819
- run: yarn publish
1920
env:

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
.devcontainer
3-
dist
3+
dist
4+
.vscode

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "skytable",
3-
"version": "1.0.0",
2+
"name": "skytable-node",
3+
"version": "0.1.2",
44
"main": "dist/cjs/index.js",
55
"types": "dist/cjs/index.d.ts",
66
"module": "dist/esm/index.mjs",
@@ -13,6 +13,12 @@
1313
"bugs": {
1414
"url": "https://github.com/skytable/client-nodejs/issues"
1515
},
16+
"files": [
17+
"dist/",
18+
"package.json",
19+
"LICENSE",
20+
"README.md"
21+
],
1622
"scripts": {
1723
"build": "yarn build:cjs && yarn build:esm",
1824
"build:cjs": "tsc",

0 commit comments

Comments
 (0)