Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TypeStrong/ts-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.8.1
Choose a base ref
...
head repository: TypeStrong/ts-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.8.2
Choose a head ref
  • 3 commits
  • 7 files changed
  • 1 contributor

Commits on Mar 22, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    sebm253 Sebastian
    Copy the full SHA
    366ac0b View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    sebm253 Sebastian
    Copy the full SHA
    92cf961 View commit details

Commits on Apr 5, 2020

  1. 8.8.2

    blakeembrey committed Apr 5, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    sebm253 Sebastian
    Copy the full SHA
    3f50313 View commit details
Showing with 41 additions and 11 deletions.
  1. +1 −1 package-lock.json
  2. +1 −1 package.json
  3. +29 −5 src/index.spec.ts
  4. +3 −4 src/index.ts
  5. +1 −0 tests/issue-986/index.ts
  6. +5 −0 tests/issue-986/tsconfig.json
  7. +1 −0 tests/issue-986/types.ts
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-node",
"version": "8.8.1",
"version": "8.8.2",
"description": "TypeScript execution environment and REPL for node.js, with source map support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
34 changes: 29 additions & 5 deletions src/index.spec.ts
Original file line number Diff line number Diff line change
@@ -340,12 +340,36 @@ describe('ts-node', function () {
})
})

it('issue #884', function (done) {
exec(`node "${BIN_PATH}" --project tests/issue-884/tsconfig.json tests/issue-884`, function (err, stdout) {
expect(err).to.equal(null)
expect(stdout).to.equal('')
describe('issue #884', function () {
it('should compile', function (done) {
exec(`node "${BIN_PATH}" --project tests/issue-884/tsconfig.json tests/issue-884`, function (err, stdout) {
expect(err).to.equal(null)
expect(stdout).to.equal('')

return done()
return done()
})
})
})

describe('issue #986', function () {
it('should not compile', function (done) {
exec(`node "${BIN_PATH}" --project tests/issue-986/tsconfig.json tests/issue-986`, function (err, stdout, stderr) {
expect(err).not.to.equal(null)
expect(stderr).to.contain('Cannot find name \'TEST\'') // TypeScript error.
expect(stdout).to.equal('')

return done()
})
})

it('should compile with `--files`', function (done) {
exec(`node "${BIN_PATH}" --files --project tests/issue-986/tsconfig.json tests/issue-986`, function (err, stdout, stderr) {
expect(err).not.to.equal(null)
expect(stderr).to.contain('ReferenceError: TEST is not defined') // Runtime error.
expect(stdout).to.equal('')

return done()
})
})
})

7 changes: 3 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -507,17 +507,16 @@ export function create (rawOptions: CreateOptions = {}): Register {
const service = ts.createLanguageService(serviceHost, registry)

const updateMemoryCache = (contents: string, fileName: string) => {
const fileVersion = fileVersions.get(fileName) || 0

// Add to `rootFiles` when discovered for the first time.
if (fileVersion === 0) {
if (!fileVersions.has(fileName)) {
rootFileNames.push(fileName)
}

const previousVersion = fileVersions.get(fileName) || 0
const previousContents = fileContents.get(fileName)
// Avoid incrementing cache when nothing has changed.
if (contents !== previousContents) {
fileVersions.set(fileName, fileVersion + 1)
fileVersions.set(fileName, previousVersion + 1)
fileContents.set(fileName, contents)
// Increment project version for every file change.
projectVersion++
1 change: 1 addition & 0 deletions tests/issue-986/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log(TEST)
5 changes: 5 additions & 0 deletions tests/issue-986/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"compilerOptions": {
"module": "CommonJS"
}
}
1 change: 1 addition & 0 deletions tests/issue-986/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare const TEST: string