kumquat-buildroot/package/vuejs/vuejs.mk
Thomas Claveirole f868fd9e3d package/vuejs: bump to version 3.3.2
This is only a bugfix release, to fix the bugs introduced by the
recent 3.3 release.

List of fixes here:
https://github.com/vuejs/core/blob/main/CHANGELOG.md#332-2023-05-12

Signed-off-by: Thomas Claveirole <thomas.claveirole@green-communications.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-07-29 11:02:40 +02:00

20 lines
512 B
Makefile

################################################################################
#
# vuejs
#
################################################################################
VUEJS_VERSION = 3.3.2
VUEJS_SOURCE = vue-$(VUEJS_VERSION).tgz
VUEJS_SITE = https://registry.npmjs.org/vue/-
VUEJS_LICENSE = MIT
VUEJS_LICENSE_FILES = LICENSE
# Install .prod.js as .js
define VUEJS_INSTALL_TARGET_CMDS
$(INSTALL) -m 644 -D $(@D)/dist/vue.global.prod.js \
$(TARGET_DIR)/var/www/vue.js
endef
$(eval $(generic-package))