mirror of
https://github.com/EvernodeXRPL/hp-devkit.git
synced 2026-04-29 15:37:58 +00:00
5 lines
212 B
Bash
Executable File
5 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
# Create a clean dist/package.json for publishing.
|
|
node -p "const pkg=require('./package.json'); delete pkg.scripts; delete pkg.devDependencies; JSON.stringify(pkg, null, 4)" \
|
|
>dist/package.json
|