Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix npm package #18

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions server/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Logs
*.log

# Runtime data
pids
*.pid
*.seed
*.pid.lock

.DS_Store

node_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Output of 'npm pack'
*.tgz

# dotenv environment variables file
.env
.env.test

7 changes: 7 additions & 0 deletions server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 1.0.2 (2024-02-26)

- Fix npm package

# 1.0.1 (2024-02-26)

- Initial release
4 changes: 2 additions & 2 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@nuclia/sync-agent",
"version": "1.0.1",
"version": "1.0.2",
"description": "This is a sync agent to synchronize user files from diferent sources to nuclia",
"main": "build/index.js",
"types": "build/types/index.d.ts",
"files": [
"build/events/index.js"
"/build"
],
"keywords": [
"Nuclia"
Expand Down
Loading