From a52e1b03738026175e2a3225d217a41cfdd5f327 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 3 May 2024 14:58:26 +0100 Subject: [PATCH 1/2] fix: use `lodash.template` directly to compile template --- lib/module.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/module.js b/lib/module.js index f61061c..5b7d55b 100644 --- a/lib/module.js +++ b/lib/module.js @@ -1,3 +1,5 @@ +import { readFileSync } from 'node:fs' +import { template } from 'lodash-es' const path = require('path') const { fileURLToPath } = require('url') const AppInsights = require('applicationinsights') @@ -44,7 +46,10 @@ module.exports = defineNuxtModule({ // Register the client plugin if (!options.disableClientSide) { addTemplate({ - src: path.resolve(__dirname, 'appinsights-vue.js'), + getContents({ options }) { + const contents = readFileSync(path.resolve(__dirname, 'appinsights-vue.js'), 'utf-8') + return template(contents)({ options }) + }, fileName: 'appinsights-vue.js' }) addPluginTemplate({ From 2ba7abef961748dcef4261a06bb385e0f28178b7 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 3 May 2024 15:04:58 +0100 Subject: [PATCH 2/2] chore: add `lodash-es` --- package.json | 6 ++++-- yarn.lock | 17 +++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 5f42ebe..b070a0a 100644 --- a/package.json +++ b/package.json @@ -22,13 +22,15 @@ "nuxt": "node --inspect=0.0.0.0 node_modules/nuxt-edge/bin/nuxt test/fixture" }, "dependencies": { + "@microsoft/applicationinsights-web": "^2.8.7", "@nuxt/kit": "^3.0.0-rc.10", "applicationinsights": "^2.3.5", - "@microsoft/applicationinsights-web": "^2.8.7", - "deepmerge": "^4.2.2" + "deepmerge": "^4.2.2", + "lodash-es": "^4.17.21" }, "devDependencies": { "@nuxtjs/eslint-config": "^6.0.1", + "@types/lodash-es": "^4.17.12", "codecov": "^3.8.2", "eslint": "^7.28.0", "jest": "^26.6.3", diff --git a/yarn.lock b/yarn.lock index 71778fd..349a8b0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2755,6 +2755,18 @@ resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= +"@types/lodash-es@^4.17.12": + version "4.17.12" + resolved "https://registry.yarnpkg.com/@types/lodash-es/-/lodash-es-4.17.12.tgz#65f6d1e5f80539aa7cfbfc962de5def0cf4f341b" + integrity sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ== + dependencies: + "@types/lodash" "*" + +"@types/lodash@*": + version "4.17.0" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.0.tgz#d774355e41f372d5350a4d0714abb48194a489c3" + integrity sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA== + "@types/minimist@^1.2.0": version "1.2.1" resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.1.tgz#283f669ff76d7b8260df8ab7a4262cc83d988256" @@ -9502,6 +9514,11 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" +lodash-es@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" + integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== + lodash._reinterpolate@^3.0.0, lodash._reinterpolate@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"