Skip to content

Commit

Permalink
gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
DerThorsten committed Jul 23, 2024
2 parents f3d1cbe + 854f21d commit 338bdc5
Show file tree
Hide file tree
Showing 64 changed files with 7,724 additions and 6,102 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/check-release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Check Release
on:
push:
branches: ["main"]
branches: ['main']
pull_request:
branches: ["*"]
branches: ['*']

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -20,7 +20,6 @@ jobs:
- name: Check Release
uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2
with:

token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload Distributions
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ jobs:
run: npm run fetch:wasm

- name: Build
run: npm run build
run: |
npm run build
- name: Lint
run: |
npm run lint:check
- name: Run tests
run: npm t
run: |
npm t
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ lib/
node_modules/
tsconfig.tsbuildinfo
.coverage/
.eslintcache
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
**/node_modules
**/lib
**/package.json
**/package-lock.json
!/package.json
**/wasm/*.js
30 changes: 28 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

<!-- <START NEW CHANGELOG ENTRY> -->

## 0.0.5

([Full Changelog](https://github.com/jupyterlite/cockle/compare/v0.0.4...77129154f8963528fdd7254e835002be04c10865))

### Enhancements made

- Add buffered stdin to accept terminal input whilst WASM commands running [#23](https://github.com/jupyterlite/cockle/pull/23) ([@ianthomas23](https://github.com/ianthomas23))
- Support coloured output for ls and grep commands [#22](https://github.com/jupyterlite/cockle/pull/22) ([@ianthomas23](https://github.com/ianthomas23))
- Add support for aliases [#21](https://github.com/jupyterlite/cockle/pull/21) ([@ianthomas23](https://github.com/ianthomas23))
- History maxSize and ignore duplicates and leading whitespace [#20](https://github.com/jupyterlite/cockle/pull/20) ([@ianthomas23](https://github.com/ianthomas23))
- Support terminal handling of columns [#19](https://github.com/jupyterlite/cockle/pull/19) ([@ianthomas23](https://github.com/ianthomas23))
- Add storage of command history [#15](https://github.com/jupyterlite/cockle/pull/15) ([@ianthomas23](https://github.com/ianthomas23))
- Implement pipes [#14](https://github.com/jupyterlite/cockle/pull/14) ([@ianthomas23](https://github.com/ianthomas23))
- Check WASM module properties exist before using [#13](https://github.com/jupyterlite/cockle/pull/13) ([@ianthomas23](https://github.com/ianthomas23))
- Add support for stdin redirect from file such as 'wc \< somefile' [#12](https://github.com/jupyterlite/cockle/pull/12) ([@ianthomas23](https://github.com/ianthomas23))
- Support 'cd -' [#11](https://github.com/jupyterlite/cockle/pull/11) ([@ianthomas23](https://github.com/ianthomas23))
- Support environment variables that persist beyond single commands [#10](https://github.com/jupyterlite/cockle/pull/10) ([@ianthomas23](https://github.com/ianthomas23))
- Support output to file, including append [#9](https://github.com/jupyterlite/cockle/pull/9) ([@ianthomas23](https://github.com/ianthomas23))
- Add grep command [#7](https://github.com/jupyterlite/cockle/pull/7) ([@ianthomas23](https://github.com/ianthomas23))

### Contributors to this release

([GitHub contributors page for this release](https://github.com/jupyterlite/cockle/graphs/contributors?from=2024-07-04&to=2024-07-22&type=c))

[@ianthomas23](https://github.com/search?q=repo%3Ajupyterlite%2Fcockle+involves%3Aianthomas23+updated%3A2024-07-04..2024-07-22&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 0.0.4

([Full Changelog](https://github.com/jupyterlite/cockle/compare/v0.0.3...da2f7736a262bd7561d335f20b9c5cfeedb4976d))
Expand All @@ -20,8 +48,6 @@

[@ianthomas23](https://github.com/search?q=repo%3Ajupyterlite%2Fcockle+involves%3Aianthomas23+updated%3A2024-05-29..2024-07-04&type=Issues)

<!-- <END NEW CHANGELOG ENTRY> -->

## 0.0.3

([Full Changelog](https://github.com/jupyterlite/cockle/compare/564c3eeb2cac64b3a9c4cf40d5c04b76aeda5707...fb1b4b169d63334cc1e0b65007dc6012c971629e))
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ Intended for use in [JupyterLite](https://github.com/jupyterlite/jupyterlite).
```bash
npm install
npm run build
npm run lint:check
npm t
```

To run single test file

```bash
npm t -- tests/whatever.ts
```
5 changes: 3 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module.exports = {
verbose: true,
collectCoverage: true,
coverageDirectory: '.coverage',
testEnvironment: "jsdom",
setupFilesAfterEnv: ["<rootDir>/tests/global_setup.ts"]
coveragePathIgnorePatterns: ['<rootDir>/node_modules/', '<rootDir>/src/wasm/'],
testEnvironment: 'jsdom',
setupFilesAfterEnv: ['<rootDir>/tests/global_setup.ts']
};
Loading

0 comments on commit 338bdc5

Please sign in to comment.