Skip to content

Commit

Permalink
Revert "release 1.3.6 (#31)"
Browse files Browse the repository at this point in the history
This reverts commit 5cb58c4.
  • Loading branch information
EntraptaJ committed May 12, 2020
1 parent 58f3d3b commit db72a3f
Show file tree
Hide file tree
Showing 27 changed files with 525 additions and 589 deletions.
5 changes: 1 addition & 4 deletions .devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,10 @@
"SHELL": "/bin/sh"
},

"extensions": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint"],

"extensions": ["esbenp.prettier-vscode"],
"remoteUser": "node",

"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
"workspaceFolder": "/workspace",

"mounts": [
"source=ts-esnode-modules,target=/workspace/node_modules,type=volume"
],
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/Push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,8 @@ jobs:
Test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node: ['13.9', '13.10', '13.11']
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
- uses: k-foss/npm-run-action@master
with:
node-version: ${{ matrix.node }}
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Run Tests
run: npm run test
scriptName: 'test'
13 changes: 2 additions & 11 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,16 @@ on:
push:
branches:
- master
- next

jobs:
Test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node: ['13.9', '13.10', '13.11']
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
- uses: k-foss/npm-run-action@master
with:
node-version: ${{ matrix.node }}
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Run Tests
run: npm run test
scriptName: 'test'

Publish:
name: NPM Publish
Expand Down
11 changes: 1 addition & 10 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
{
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
Expand All @@ -25,9 +20,5 @@
}
],
"@semantic-release/github"
],
"branches": [
"master",
"next"
]
}
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
}
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
![Libraries.io dependency status for latest release, scoped npm package](https://img.shields.io/librariesio/release/npm/@k-foss/ts-esnode)

This is a Node.JS Loader hook for Node.JS 13.9 or newer that transpiles TypeScript files into JavaScript using the `getFormat`, `resolve`, and `transformSource` hooks.
This is a Node.JS Loader hook for Node.JS 13.7 or newer that transpiles TypeScript files into JavaScript using the `getFormat`, `resolve`, and `transformSource` hooks.

## Usage

Expand Down Expand Up @@ -41,7 +41,7 @@ When you open this folder in VSCode you should get a notication to reopen in con

### Testing

**MUST HAVE NODE.JS v13.9 or newer**
**MUST HAVE NODE.JS v13.7 or newer**

To try this out, clone repo

Expand Down
4 changes: 1 addition & 3 deletions Testing/Runner/Utils/runTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ export interface Result {
}

export function runTest(test: Test): Promise<Result> {
const worker = spawnWorker(test.path, {
helloWorld: ['test', 'test2'],
});
const worker = spawnWorker(test.path, {});

return new Promise((resolve, reject) => {
worker.on('exit', (exitCode) => {
Expand Down
5 changes: 0 additions & 5 deletions Testing/Tests/DotImport/package-lock.json

This file was deleted.

12 changes: 0 additions & 12 deletions Testing/Tests/DotImport/package.json

This file was deleted.

5 changes: 0 additions & 5 deletions Testing/Tests/DotImport/src/Hello/helloWorld.ts

This file was deleted.

2 changes: 0 additions & 2 deletions Testing/Tests/DotImport/src/Hello/index.ts

This file was deleted.

21 changes: 0 additions & 21 deletions Testing/Tests/DotImport/src/index.ts

This file was deleted.

10 changes: 0 additions & 10 deletions Testing/Tests/DotImport/src/randomLoader.ts

This file was deleted.

8 changes: 0 additions & 8 deletions Testing/Tests/DotImport/tsconfig.json

This file was deleted.

1 change: 0 additions & 1 deletion Testing/Tests/SimilarFindFileFolder/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions Testing/Tests/SimilarFindFileFolder/package-lock.json

This file was deleted.

12 changes: 0 additions & 12 deletions Testing/Tests/SimilarFindFileFolder/package.json

This file was deleted.

2 changes: 0 additions & 2 deletions Testing/Tests/SimilarFindFileFolder/src/Library/React.ts

This file was deleted.

This file was deleted.

8 changes: 0 additions & 8 deletions Testing/Tests/SimilarFindFileFolder/src/index.ts

This file was deleted.

8 changes: 0 additions & 8 deletions Testing/Tests/SimilarFindFileFolder/tsconfig.json

This file was deleted.

42 changes: 0 additions & 42 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,45 +1,3 @@
## [1.3.7](https://github.com/K-FOSS/TS-ESNode/compare/v1.3.6...v1.3.7) (2020-05-12)


### Bug Fixes

* **dot import:** Fix `import XYZ from '.'` ([#52](https://github.com/K-FOSS/TS-ESNode/issues/52)) ([19df585](https://github.com/K-FOSS/TS-ESNode/commit/19df585d6d683a499f9df47301abf3d23d267541)), closes [#34](https://github.com/K-FOSS/TS-ESNode/issues/34)

## [1.3.6](https://github.com/K-FOSS/TS-ESNode/compare/v1.3.5...v1.3.6) (2020-05-12)


### Bug Fixes

* **dynamicInstantiate:** works with pnpm ([#45](https://github.com/K-FOSS/TS-ESNode/issues/45)) ([5c0fadf](https://github.com/K-FOSS/TS-ESNode/commit/5c0fadf4d0508ee842578ab4a65899fad69d4b72))

## [1.3.5](https://github.com/K-FOSS/TS-ESNode/compare/v1.3.4...v1.3.5) (2020-04-05)


### Bug Fixes

* **resolve:** Don't run findFiles if we can already see an extension. ([b0e2b85](https://github.com/K-FOSS/TS-ESNode/commit/b0e2b850487d91b4ef8f101d64ef481689d5c875))

## [1.3.4](https://github.com/K-FOSS/TS-ESNode/compare/v1.3.3...v1.3.4) (2020-04-05)


### Bug Fixes

* **findFiles:** Fix the discovery of files when a directory of partial name match occurs ([2f108e2](https://github.com/K-FOSS/TS-ESNode/commit/2f108e26c4218af3079c265741f5dcca45e343ba))

## [1.3.3](https://github.com/K-FOSS/TS-ESNode/compare/v1.3.2...v1.3.3) (2020-03-30)


### Bug Fixes

* Readd JS_EXTS to findFIles to allow for post build JS support ([82b27c0](https://github.com/K-FOSS/TS-ESNode/commit/82b27c04432ccd2b3a5e065927bfcf9f5ebcb24a))

## [1.3.2](https://github.com/K-FOSS/TS-ESNode/compare/v1.3.1...v1.3.2) (2020-03-30)


### Bug Fixes

* **Resovler:** Refactor resolver and module loader to prevent loading of URLs and already discovered javascript files ([#28](https://github.com/K-FOSS/TS-ESNode/issues/28)) ([4825f19](https://github.com/K-FOSS/TS-ESNode/commit/4825f19e305081d340fb68629a5e5ba813555f46))

## [1.3.1](https://github.com/K-FOSS/TS-ESNode/compare/v1.3.0...v1.3.1) (2020-03-28)


Expand Down
Loading

0 comments on commit db72a3f

Please sign in to comment.