Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
5a2dbb2
Dev mainly completion (#31)
jaandrle Jun 14, 2023
3b4194b
`njs` alias
jaandrle Jul 19, 2023
4252073
Squashed commit of the following:
jaandrle Jul 19, 2023
efb342b
:boom: css-in-console@v2
jaandrle Aug 27, 2023
0e368f4
:sparkles: Add repl command
jaandrle Sep 25, 2023
472b0dc
:zap: :bug: Completion/Help and fixing runs, …
jaandrle Feb 27, 2024
56e0df8
:bug: mirror `$.is_*`, REPL
jaandrle Feb 28, 2024
d4293c5
:bug: :zap: Fix `cd` and `query`
jaandrle Mar 6, 2024
25752fa
:zap: REPL completer + `$()` off options
jaandrle Mar 6, 2024
914dadc
:bug: REPL completer, pwd
jaandrle Mar 6, 2024
7112436
:zap: Add new REPL commands for history and exiting and improve
jaandrle Mar 7, 2024
ee7e833
:zap: Add completion for on demand scripts and related improvements
jaandrle Mar 7, 2024
9fdf2bc
:zap: added interactive mode and eval option to help text
jaandrle Mar 7, 2024
9a43e37
:zap: :cop: Separate REPL part
jaandrle Mar 12, 2024
8fdaa78
:bug: :cop: various cli errors
jaandrle Mar 12, 2024
f0c32ec
:bug: repl writer
jaandrle Mar 13, 2024
2021009
:bug: :cop: Bugs/issues relating to `shelljs.config` and cli
jaandrle Mar 14, 2024
0b43eec
:bug: fixing outdated examples
jaandrle Mar 14, 2024
c3bd933
:abc: :cop:/:zap: v1 docs/info and #15
jaandrle Mar 15, 2024
f94ef06
:abc: added fold regions and better `njs --completion`
jaandrle Mar 15, 2024
62c6f6c
:abc: :zap: Improve doc amd `--man`
jaandrle Mar 16, 2024
d8fb3ab
:abc: man
jaandrle Mar 16, 2024
ad5d7f2
:abc: examples for goods
jaandrle Mar 18, 2024
a2dbf02
:abc: :zap: `--interactive`/`--inspect`/`*rc`
jaandrle Mar 18, 2024
287efae
:abc: :zap: :bug:
jaandrle Mar 18, 2024
f464445
:abc: migrations moved
jaandrle Mar 18, 2024
3a5ee60
:abc: `njs -p`
jaandrle Mar 18, 2024
d7be18c
:abc: “one–file”
jaandrle Mar 18, 2024
3b378e1
:abc: included discussions in README
jaandrle Mar 18, 2024
d60fbb0
:abc: :bug: typos
jaandrle Mar 18, 2024
789e60d
:bug: no crash when `echo(s.echo())`
jaandrle Mar 20, 2024
7eec9c5
:zap: :abc: making README.md more readable for contributing
jaandrle Mar 20, 2024
644324f
:abc: one-p starting
jaandrle Mar 20, 2024
0c78560
:abc: improved `s.run`/`s.runA` docs and moved `node:*` sec. to goods
jaandrle Mar 21, 2024
7ed9200
:abc: `--global-jsconfig`, examples
jaandrle Mar 21, 2024
c302fcc
:abc: nodejsscriptrc docs: targets, error
jaandrle Mar 21, 2024
7dd3e40
:abc: :zap: no-nodejsscript
jaandrle Mar 21, 2024
b08c776
:abc: how to find out config file
jaandrle Mar 21, 2024
4ce7661
:zap: `njs --help` and help for subcommands
jaandrle Mar 22, 2024
f5f3181
:abc: `njs --man` and `.mjs`/`.js`
jaandrle Mar 22, 2024
59398ab
:abc: :tv: docs structure and generating improvements
jaandrle Mar 22, 2024
c9f9e33
:abc: `shjs`
jaandrle Mar 22, 2024
3f1e2ec
:abc: please visit
jaandrle Mar 22, 2024
bcbe4a2
:abc: shelljs overview and Shell* types
jaandrle Mar 22, 2024
e31c956
:abc: :zap: `--man`→`--tldr`
jaandrle Mar 22, 2024
64490af
:bug: REPL history and echo stderr
jaandrle Mar 25, 2024
67666bc
:cop: :abc: echo example
jaandrle Mar 25, 2024
32b0dc9
:abc: `echo.use("-R…`/`echo(…`
jaandrle Mar 25, 2024
9563eb3
:cop: github workflows security and updates
jaandrle Mar 25, 2024
a95406f
:abc: :bug: better examples
jaandrle Mar 26, 2024
ba5a2b8
:abc: Convention
jaandrle Mar 26, 2024
259077b
:zap :abc: repl strict mode
jaandrle Mar 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd3184696330 # v4.1.2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $ npm ci
```
There is `npm` task for generating documentation from TypeScript anotations:
```bash
npm run doc
npm run build
```

## Documentation/examples improvements
Expand Down
Loading