13 lines
245 B
Bash
Executable File
13 lines
245 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Build the library
|
|
npm run build
|
|
|
|
# Link it locally for development
|
|
cd dist
|
|
npm link
|
|
|
|
echo "✓ Library built and linked successfully"
|
|
echo "Run 'npm link @sda/data-viz-elements-ui' in your consuming app"
|