Skip to content

Commit

Permalink
chore: bump the next_gen version (#1533)
Browse files Browse the repository at this point in the history
  • Loading branch information
NigelBreslaw authored May 5, 2024
1 parent 88628d1 commit fcce9a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"linter": {
"enabled": true,
"ignore": ["./babel.config.js", "minifier/index.ts", "**/*.astro"],
"ignore": ["./babel.config.js", "minifier/index.ts", "**/*.astro", "minifier/**"],
"rules": {
"recommended": true,
"style": {
Expand Down
2 changes: 1 addition & 1 deletion minifier/next_gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ function createMiniDefinition(jsonData: JsonData, uniqueKey: string): ProcessedD
return repeatStringsMap[name].get(s)!;
}

const processedData: ProcessedData = { helpers: {}, items: {}, version: 3, id: uniqueKey };
const processedData: ProcessedData = { helpers: {}, items: {}, version: 4, id: uniqueKey };

const sortedDataKeys = Object.keys(jsonData).sort((a, b) => parseFloat(a) - parseFloat(b));

Expand Down

0 comments on commit fcce9a3

Please sign in to comment.