feat(init): publishing

This commit is contained in:
Rodney, Tiara 2025-04-25 15:56:29 +02:00
parent 32636217ee
commit c297e3f4ef
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
15 changed files with 9934 additions and 6837 deletions

26
configure.ac Normal file
View file

@ -0,0 +1,26 @@
AC_INIT
AC_CHECK_PROGS([MAKE], [make])
AC_CHECK_PROGS([PYTHON3], [npm])
AC_CHECK_PROGS([AUTOCONF], [autoconf])
AC_CHECK_PROGS([GIT], [git])
AC_MSG_CHECKING([if 'NPM_REGISTRY' is set])
if ! test -z "$NPM_REGISTRY"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
AC_MSG_CHECKING([if 'NPM_AUTH_TOKEN' is set])
if ! test -z "$NPM_AUTH_TOKEN"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
AC_MSG_NOTICE([initializing npm...])
npm install
AC_OUTPUT