Skip to content

Commit

Permalink
Include registry in .npmrc file (#66)
Browse files Browse the repository at this point in the history
* Fix file formatting

Signed-off-by: Sanjula Ganepola <[email protected]>

* Include registry in .npmrc file

Signed-off-by: Sanjula Ganepola <[email protected]>

* Update lock file

Signed-off-by: Sanjula Ganepola <[email protected]>

---------

Signed-off-by: Sanjula Ganepola <[email protected]>
  • Loading branch information
SanjulaGanepola authored Feb 10, 2025
1 parent 11ecc1f commit 9a332d3
Show file tree
Hide file tree
Showing 7 changed files with 541 additions and 2,667 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry = "https://registry.npmjs.org/"
3,180 changes: 523 additions & 2,657 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions src/record/IRecord.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export interface IRecord {
*/
getRecordType(): IRecordT;

/**
* Get the version.
*
* @return The version.
*/
/**
* Get the version.
*
* @return The version.
*/
getVersion(): number;

/**
Expand Down
4 changes: 3 additions & 1 deletion testfixtures/hll/iproj.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"tgtccsid": "37",
"includePath": ["includes"],
"includePath": [
"includes"
],
"curlib": "&CURLIB"
}
9 changes: 7 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,10 @@
"sourceMap": true,
"declaration": true
},
"exclude": ["node_modules", "testfixtures", "vitest", "dist"]
}
"exclude": [
"node_modules",
"testfixtures",
"vitest",
"dist"
]
}
2 changes: 1 addition & 1 deletion vitest/files.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { assert, describe, it } from 'vitest'
import { Parser } from '../src/Parser';
import { FileIDRecord } from '../src/record/FileIDRecord';
import { MarkerCreator } from './MarkerCreator';
import {FileReader} from './FileReader';
import { FileReader } from './FileReader';

const TEST_DIR = 'testfixtures/evf';
describe('Tests', () => {
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = {
module: {
rules: [
// all files with a `.ts`, `.cts`, `.mts` or `.tsx` extension will be handled by `ts-loader`
{ test: /\.([cm]?ts|tsx)$/, loader: "ts-loader", options: {allowTsInNodeModules: true} }
{ test: /\.([cm]?ts|tsx)$/, loader: "ts-loader", options: { allowTsInNodeModules: true } }
]
},
entry: {
Expand Down

0 comments on commit 9a332d3

Please sign in to comment.