Skip to content

Commit

Permalink
bumped deps
Browse files Browse the repository at this point in the history
  • Loading branch information
AndiDittrich committed Nov 25, 2020
1 parent 1ad5224 commit 93406c0
Show file tree
Hide file tree
Showing 7 changed files with 874 additions and 972 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* Changed: `droide` theme color `#009999` to `#007f7f` for higher contrast (WCAG) - thanks to [aphelionz on GitHub](https://github.com/EnlighterJS/EnlighterJS/pull/117)
* Bugfix: keywords of `generic` language requires a word-boundary before+after instead of a non word character - thanks to [Irwanda04 on GitHub](https://github.com/EnlighterJS/EnlighterJS/issues/129)
* Bugfix: added missing `string` keyword to `c#` type list
* Bugfix: pound and double-slash style comments also matched the last character before the comment

### Version 3.4.0 ###

Expand Down
2 changes: 1 addition & 1 deletion dist/enlighterjs.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/enlighterjs.min.js

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// --
// Copyright 2016-2019 Andi Dittrich <https://andidittrich.de>
// Copyright 2016-2020 Andi Dittrich <https://andidittrich.de>
// ----------------------------------------------------------------------


// --------------------------------------------------------------------------
// EnlighterJS Syntax Highlighter - https://enlighterjs.org
// --------------------------------------------------------------------------
Expand Down Expand Up @@ -39,7 +38,7 @@ _gulp.task('es6-transpile', async function(){
const bundle = await _rollup.rollup({
input: './src/browser/EnlighterJS.js',
plugins: [
_rollup_resolve(),
_rollup_resolve.nodeResolve(),
_rollup_babel()
]
});
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "enlighterjs",
"description": "an open source syntax highlighter written in pure javascript",
"version": "3.4.0",
"version": "3.5.0",
"homepage": "https://enlighterjs.org",
"author": {
"name": "Andi Dittrich",
Expand Down Expand Up @@ -44,15 +44,15 @@
"xml"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/core": "^7.12.9",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/plugin-transform-react-jsx": "^7.12.7",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@rollup/plugin-node-resolve": "^7.1.3",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@rollup/plugin-node-resolve": "^10.0.0",
"clean-css": "~4.2.3",
"eslint": "^6.8.0",
"eslint": "^7.14.0",
"eslint-config-aenondynamics": "^0.2.0",
"eslint-plugin-react": "^7.19.0",
"express": "^4.16.2",
Expand All @@ -66,9 +66,9 @@
"gulp-prettyerror": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.0",
"rollup": "^2.6.1",
"rollup": "^2.33.3",
"rollup-plugin-babel": "^4.4.0",
"uglify-js": "~3.9.1"
"uglify-js": "~3.12.0"
},
"dependencies": {
"dom-magic": "^1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lang/rulesets/generic.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// --
// Copyright 2016-2018 Andi Dittrich <https://andidittrich.de>
// Copyright 2016-2020 Andi Dittrich <https://andidittrich.de>
// ----------------------------------------------------------------------

// Commonly used Regular Expressions
Expand Down
1,814 changes: 858 additions & 956 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 93406c0

Please sign in to comment.