chore: handle 'npm run raw' being used on node versions below 22.7.0 (#2747)
Reviewed-on: OpenWF/SpaceNinjaServer#2747 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									f4f7ed00d1
								
							
						
					
					
						commit
						6b66cb495b
					
				@ -15,7 +15,7 @@
 | 
			
		||||
    "dev:bun": "bun scripts/dev.cjs",
 | 
			
		||||
    "verify": "tsgo --noEmit",
 | 
			
		||||
    "verify:tsc": "tsc --noEmit",
 | 
			
		||||
    "raw": "node --experimental-transform-types src/index.ts",
 | 
			
		||||
    "raw": "node scripts/raw-precheck.js && node --experimental-transform-types src/index.ts",
 | 
			
		||||
    "raw:bun": "bun src/index.ts",
 | 
			
		||||
    "lint": "eslint --ext .ts .",
 | 
			
		||||
    "lint:ci": "eslint --ext .ts --rule \"prettier/prettier: off\" .",
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										9
									
								
								scripts/raw-precheck.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								scripts/raw-precheck.js
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,9 @@
 | 
			
		||||
const [major, minor] = process.versions.node.split(".").map(x => parseInt(x));
 | 
			
		||||
if (major > 22 || (major == 22 && minor >= 7)) {
 | 
			
		||||
    // ok
 | 
			
		||||
} else {
 | 
			
		||||
    console.log("Sorry, your Node version is a bit too old for this. You have 2 options:");
 | 
			
		||||
    console.log("- Update Node.js.");
 | 
			
		||||
    console.log("- Use 'npm run build && npm run start'. Optional libraries must be installed for this.");
 | 
			
		||||
    process.exit(1);
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user