Skip to content

Commit

Permalink
fix: fix Babel vulnerable to arbitrary code execution
Browse files Browse the repository at this point in the history
  • Loading branch information
shadiabuhilal committed Apr 9, 2024
1 parent 2e44561 commit da72a26
Show file tree
Hide file tree
Showing 4 changed files with 6,882 additions and 7,151 deletions.
1 change: 0 additions & 1 deletion .jshintrc
Expand Up @@ -25,7 +25,6 @@
"indent" : 4,
"globals": {
"expect" : true,
"jasmine" : true,
"jest" : true,
"require" : true,
"console" : true,
Expand Down
4 changes: 2 additions & 2 deletions __tests__/index.spec.js
Expand Up @@ -4,7 +4,7 @@
*/
'use strict';

/*global jest, jasmine, describe, it, expect */
/*global jest, describe, it, expect */

jest.mock('fs', function () {

Expand Down Expand Up @@ -33,7 +33,7 @@ describe('Lasso RTL css plugin', function () {
contentType: 'css',
name: 'lasso-rtl-css',
stream: false,
transform: jasmine.any(Function)
transform: expect.any(Function)
});
});

Expand Down

0 comments on commit da72a26

Please sign in to comment.