Skip to content
Open
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
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -575,10 +575,11 @@ LDAPServer/
# Install dependencies
npm install

# Build core package
npm run build:core
# Start the server
npm start

# Build server package
# Build for releases
npm run build:core
npm run build:server

# Create binary
Expand Down
4 changes: 2 additions & 2 deletions npm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "@ldap-gateway/core",
"version": "0.1.0",
"description": "Reusable LDAP gateway core with pluggable authentication and directory backends",
"main": "dist/index.js",
"main": "src/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/",
"README.md"
],
"scripts": {
Expand Down