0
0
Fork 0

Convert from npm scripts to a makefile

This commit is contained in:
Oliver Akins 2022-05-26 13:39:32 -06:00
parent 5e456894c0
commit e27025b586
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99
2 changed files with 25 additions and 3 deletions

View file

@ -4,9 +4,9 @@
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
"dev": "echo Use command: make dev",
"build": "echo Use command: make release",
"version": "echo Use command: make version"
},
"keywords": [],
"author": "",