diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 83fa8a7..ad8944a 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -4,7 +4,7 @@ on: types: [created] jobs: Publish-NPM: - runs-on: ubuntu-latest + runs-on: node1 steps: - name: Checkout uses: actions/checkout@v2 @@ -22,7 +22,7 @@ jobs: REGISTRY2: 'registry=https://registry.npmjs.org/' Publish-GitHub-NPM: - runs-on: ubuntu-latest + runs-on: node1 steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.gitignore b/.gitignore index 6704566..62fccc5 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,6 @@ dist # TernJS port file .tern-port + +package-lock.json +build \ No newline at end of file diff --git a/package.json b/package.json index a498ec3..4871324 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@thundernetworkrad/time", - "version": "2023.02.03", + "version": "2023.02.05", "description": "Time Modules for NPM", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/tsconfig.json b/tsconfig.json index f5214c3..5e9d717 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -26,7 +26,7 @@ /* Modules */ "module": "CommonJS", /* Specify what module code is generated. */ - "rootDir": "./src/", /* Specify the root folder within your source files. */ + "rootDir": "src", /* Specify the root folder within your source files. */ "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */