Skip to content

Commit

Permalink
Bump next version
Browse files Browse the repository at this point in the history
  • Loading branch information
PalumboN committed May 1, 2024
1 parent 95ed963 commit 22dd519
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wollok-ts",
"version": "4.1.1",
"version": "4.1.2",
"wollokVersion": "3.2.3",
"description": "TypeScript based Wollok language implementation",
"repository": "https://github.com/uqbar-project/wollok-ts",
Expand Down
2 changes: 1 addition & 1 deletion src/validator/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ sourceMapForNodeName)

export const shouldNotUseSpecialCharactersInName = error<Package>(node =>
!node.fileName ||
node.fileName.match(/([A-Za-z._/\d])/g)!.length === node.fileName.length
node.fileName.match(/([A-Za-z._/\d])/g)!.length === node.fileName.length
&& node.fileName.match(/\./g)!.length === 1
, valuesForFileName,
sourceMapForNodeName)
Expand Down

0 comments on commit 22dd519

Please sign in to comment.