Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
Package moved to @nextjournal org
  • Loading branch information
zampino committed Oct 10, 2022
1 parent 5e96c74 commit dde55e0
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 33 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/dist
.idea
debug
nextjournal-lezer-clojure-*.tgz
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.idea
debug
.github
nextjournal-lezer-clojure-*.tgz
34 changes: 13 additions & 21 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,13 @@
MIT License

Copyright (C) 2018 by Marijn Haverbeke <[email protected]> and others

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Copyright 2022 Nextjournal GmbH.

Permission to use, copy, modify, and/or distribute this software for any purpose
with or without fee is hereby granted, provided that the above copyright notice
and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# lezer-clojure
# @nextjournal/lezer-clojure [![NPM version](https://img.shields.io/npm/v/@nextjournal/lezer-clojure.svg)](https://www.npmjs.com/package/@nextjournal/lezer-clojure)

This is a Clojure grammar for the
[lezer](https://lezer.codemirror.net/) parser system.

The code is licensed under an MIT license.
The code is licensed under an ISC license.

# Dev

To watch & test, with [entr](http://eradman.com/entrproject/) installed run `npm run watch`

# Previous Package Name

This package has been previously released (unscoped) as [lezer-clojure](https://www.npmjs.com/package/lezer-clojure).
10 changes: 5 additions & 5 deletions package-lock.json

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

21 changes: 16 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "lezer-clojure",
"version": "1.0.0-rc.2",
"name": "@nextjournal/lezer-clojure",
"version": "1.0.0",
"description": "lezer-based Clojure(Script) grammar",
"main": "dist/index.cjs",
"author": "Martin Kavalar <[email protected]>",
"license": "MIT",
"license": "ISC",
"type": "module",
"exports": {
"import": "./dist/index.es.js",
Expand All @@ -23,7 +23,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/nextjournal/lezer-clojure.git"
"url": "git+https://github.com/nextjournal/lezer-clojure.git"
},
"scripts": {
"build": "lezer-generator src/clojure.grammar -o src/parser && rollup -c",
Expand All @@ -32,5 +32,16 @@
"test": "mocha --experimental-modules test/test-*.js",
"on-change": "npm run build && npm run test",
"watch": "git ls-files | entr npm run on-change"
}
},
"bugs": {
"url": "https://github.com/nextjournal/lezer-clojure/issues"
},
"homepage": "https://github.com/nextjournal/lezer-clojure#readme",
"directories": {
"test": "test"
},
"keywords": [
"lezer",
"clojure"
]
}

0 comments on commit dde55e0

Please sign in to comment.