Skip to content

Commit

Permalink
chore(release): v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Mar 19, 2023
1 parent 8b0692b commit 059abbf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 72 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# [1.8.0](https://github.com/emkis/gtm-event-tracker/compare/v1.7.0...v1.8.0) (2023-03-19)


### Bug Fixes

* **tracker-context:** remove unsupported for high order functions for setting props ([e2c98f6](https://github.com/emkis/gtm-event-tracker/commit/e2c98f6f1da554abe3388feac74272bd2e4d4d7c))


### Features

* **error:** add error code for each error ([75b550a](https://github.com/emkis/gtm-event-tracker/commit/75b550aacfb86ac5e99e57ccfc78caab5573517c))
* **error:** throw minified error message ([13611dc](https://github.com/emkis/gtm-event-tracker/commit/13611dc4bda559df3ce7bc072f64619bfb89affc))
* **shared:** throw error code in production ([5304cd8](https://github.com/emkis/gtm-event-tracker/commit/5304cd81dda6180bfbf0ee824634f75ffe571db3))

# [1.7.0](https://github.com/emkis/gtm-event-tracker/compare/v1.6.0...v1.7.0) (2022-11-22)


Expand Down
73 changes: 1 addition & 72 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,84 +5,13 @@
"email": "nicolasemkis@gmail.com"
},
"license": "MIT",
"version": "1.7.0",
"version": "1.8.0",
"description": "A tiny, type-safe and zero-dependency solution for triggering Google Tag Manager track events.",
"keywords": [
"gtm",
"tracking",
"google-tag-manager",
"analytics"
],
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/gtm-event-tracker.d.ts",
"repository": "git@github.com:emkis/gtm-event-tracker.git",
"files": [
"/dist"
],
"scripts": {
"prepare": "husky install",
"prepare:publish": "yarn tsx ./scripts/clean-package-json.ts",
"clean": "rimraf dist* temp coverage *.tsbuildinfo",
"dev": "npm-run-all clean 'build:ts --watch'",
"build": "npm-run-all clean build:ts build:types",
"build:ts": "rollup --config rollup.config.mjs",
"build:types": "npm-run-all ts:compile ts:replace-alias",
"lint": "eslint . --ext js,ts",
"test": "npm-run-all test:api-report test:unit:coverage",
"test:unit": "jest",
"test:unit:coverage": "npm-run-all 'test:unit --coverage'",
"test:api-report": "npm-run-all build api-report",
"test:api-report:update": "npm-run-all build 'api-report --local'",
"api-report": "api-extractor run",
"ts:compile": "tsc --project tsconfig.build.json",
"ts:replace-alias": "tsc-alias --project tsconfig.build.json"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@faker-js/faker": "^7.6.0",
"@microsoft/api-extractor": "^7.34.4",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"esbuild": "^0.17.12",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"rimraf": "^4.4.0",
"rollup": "^3.19.1",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-size": "^0.3.1",
"semantic-release": "^20.1.3",
"tsc-alias": "^1.8.3",
"tsx": "^3.12.5",
"typescript": "^5.0.2"
}
}

0 comments on commit 059abbf

Please sign in to comment.