ga4-export-fixer 0.4.7 → 0.5.1-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/documentation.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/documentation.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
const constants = require('./constants');
|
|
2
|
+
const { version } = require('./package.json');
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* Composes a multi-section column description string from individual sections.
|
|
@@ -195,7 +196,7 @@ const buildTableDescription = (config, tableSections) => {
|
|
|
195
196
|
const sections = [...tableSections];
|
|
196
197
|
|
|
197
198
|
// Package Attribution
|
|
198
|
-
sections.push(`${constants.TABLE_DESCRIPTION_SUFFIX}\n${constants.TABLE_DESCRIPTION_DOCUMENTATION_LINK}`);
|
|
199
|
+
sections.push(`${constants.TABLE_DESCRIPTION_SUFFIX} Version: ${version}\n${constants.TABLE_DESCRIPTION_DOCUMENTATION_LINK}`);
|
|
199
200
|
|
|
200
201
|
// Config JSON dump
|
|
201
202
|
const configForDump = Object.fromEntries(
|