Skip to content

Commit b0c82fa

Browse files
author
Mark Molinaro
committed
change name
1 parent f3c556a commit b0c82fa

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
registry-url: 'https://registry.npmjs.org'
1616
- run: yarn --frozen-lockfile
1717
- run: yarn build
18-
- run: npm publish
18+
- run: yarn publish --access=public
1919
env:
2020
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
2121

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,5 @@ temp/
110110

111111
# End of https://www.gitignore.io/api/node
112112

113-
execr.d.ts
114-
execr.js
113+
*.d.ts
114+
*.js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "execr",
2+
"name": "@markjm/execr",
33
"version": "1.0.0",
44
"description": "Utility to streamline exec calls",
55
"main": "execr.js",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
1313
// "sourceMap": true, /* Generates corresponding '.map' file. */
1414
// "outFile": "./", /* Concatenate and emit output to single file. */
15-
"outDir": "./dist", /* Redirect output structure to the directory. */
15+
// "outDir": "./dist", /* Redirect output structure to the directory. */
1616
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
1717
// "composite": true, /* Enable project compilation */
1818
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */

0 commit comments

Comments
 (0)