Skip to content

Commit

Permalink
fix: enter a new era
Browse files Browse the repository at this point in the history
  • Loading branch information
tefkah committed Mar 9, 2023
1 parent 6e4187a commit 9c2a0e5
Show file tree
Hide file tree
Showing 141 changed files with 1,394 additions and 1,405 deletions.
2 changes: 1 addition & 1 deletion libs/citations/apa-parser/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './lib/apa-parser'
export * from './lib/apa-parser.js'
2 changes: 1 addition & 1 deletion libs/citations/crossref-json/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": ["node"]
},
"exclude": ["**/*.spec.ts", "**/*.test.ts"],
"include": ["src/index.ts"]
"include": ["src/**/*.ts"]
}
2 changes: 1 addition & 1 deletion libs/citations/crossref-to-csl/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './lib/crossref-to-csl'
export * from './lib/crossref-to-csl.js'
2 changes: 1 addition & 1 deletion libs/citations/csl-consolidate/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './lib/csl-consolidate'
export * from './lib/csl-consolidate.js'
2 changes: 1 addition & 1 deletion libs/citations/csl-to-biblatex/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './lib/csl-to-biblatex'
export * from './lib/csl-to-biblatex.js'
10 changes: 5 additions & 5 deletions libs/citations/csl-to-biblatex/src/lib/csl-to-biblatex.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { cslToBiblatex } from './csl-to-biblatex';
import { cslToBiblatex } from './csl-to-biblatex.js'

describe('cslToBiblatex', () => {
it('should work', () => {
expect(cslToBiblatex()).toEqual('csl-to-biblatex');
})
})
it('should work', () => {
expect(cslToBiblatex()).toEqual('csl-to-biblatex')
})
})
2 changes: 1 addition & 1 deletion libs/citations/ojs-types/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './lib/types'
export * from './lib/types.js'
2 changes: 1 addition & 1 deletion libs/citations/parse-text-cite/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": ["../../../.eslintrc.json"],
"ignorePatterns": ["**/apa.ts"],
"ignorePatterns": ["!**/*", "**/apa.ts"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
Expand Down
2 changes: 1 addition & 1 deletion libs/citations/parse-text-cite/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './lib/parse-text-cite'
export * from './lib/parse-text-cite.js'
Loading

0 comments on commit 9c2a0e5

Please sign in to comment.