Adds @xuqm/h5-sdk/private entry point with JSON-based initialization, feature gating, and error codes for private deployment scenarios. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 行
290 B
Makefile
21 行
290 B
Makefile
PATH := node_modules/.bin:$(PATH)
|
|
|
|
all: package.json install
|
|
|
|
install: package.json
|
|
yarn
|
|
|
|
test:
|
|
mocha test/*.js
|
|
|
|
lint:
|
|
eslint -c ./.eslint.yaml ./lib
|
|
|
|
clean:
|
|
rm package.json yarn.lock
|
|
|
|
package.json: package.yaml
|
|
js-yaml package.yaml > package.json
|
|
|
|
.PHONY: clean all install lint test
|