diff --git a/README.md b/README.md index a26fa82..17196ab 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,12 @@ Here are some of the use cases: 5. If you mess up your dev GTM account and want to start from scratch, reset it quickly and then copy the configuration from production to start over. +## Installation + +``` +npm install gtm-tools +``` + ## Usage ### Configuration diff --git a/package.json b/package.json index af136a0..47bbaed 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "scripts": { "lint": "gts lint", "clean": "gts clean", - "compile": "tsc && node scripts/shebangify.js ./build/index.js && chmod a+x ./build/index.js", + "compile": "tsc && node scripts/shebangify.js ./dist/index.js && chmod a+x ./dist/index.js", "fix": "gts fix", "prepare": "husky install", "pretest": "npm run compile", @@ -42,8 +42,8 @@ "reflect-metadata": "^0.1.13", "yaml": "^2.3.1" }, - "main": "./build/index.js", + "main": "./dist/index.js", "bin": { - "gtm-tools": "./build/index.js" + "gtm-tools": "./dist/index.js" } } diff --git a/tsconfig.json b/tsconfig.json index 5915dfc..d6f6c7e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "extends": "./node_modules/gts/tsconfig-google.json", "compilerOptions": { "rootDir": "src", - "outDir": "build", + "outDir": "dist", "esModuleInterop": true, "sourceMap": true, "target": "es2020",