We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af9eca5 commit 18c5986Copy full SHA for 18c5986
cosmo-router/plugins/users/.gitignore
@@ -0,0 +1,2 @@
1
+# Ignore the binary files
2
+bin/
cosmo-router/plugins/users/Makefile
@@ -0,0 +1,19 @@
+
+.PHONY: build test generate install-wgc
3
4
+install-wgc:
5
+ @which wgc > /dev/null 2>&1 || npm install -g wgc@latest
6
7
+make: build
8
9
+test: install-wgc
10
+ wgc router plugin test .
11
12
+generate: install-wgc
13
+ wgc router plugin generate .
14
15
+publish: generate
16
+ wgc router plugin publish .
17
18
+build: install-wgc
19
+ wgc router plugin build . --debug
0 commit comments