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.
2 parents 8e69e14 + 0faaeb0 commit 46fe75fCopy full SHA for 46fe75f
Makefile
@@ -53,19 +53,27 @@ serve: package
53
.PHONY: catalog
54
catalog: catalog-papi
55
56
+# uses the old configapi
57
.PHONY: capi
58
capi: vendor/bundle
59
@node scripts/catalog-capi.js
60
-#backcompat alias
61
-.PHONY: papi
62
-papi: vendor/bundle
63
- @node scripts/catalog_papi.js
+# shorter alias
+.PHONY: catalog-capi
+catalog-capi: vendor/bundle
64
+ @node scripts/catalog-capi.js
65
66
+# uses the new public api
67
.PHONY: catalog-papi
68
catalog-papi: vendor/bundle
69
@node scripts/catalog_papi.js
70
71
72
+.PHONY: papi
73
+papi: vendor/bundle
74
+ @node scripts/catalog_papi.js
75
+
76
77
.PHONY: changelog
78
changelog: vendor/bundle
79
@node scripts/changelog.js
0 commit comments