Comparing version 0.2.0 to 0.2.1
@@ -13,3 +13,3 @@ #!/usr/bin/env node | ||
if(process.platform != 'darwin') { | ||
if((process.platform != 'darwin') && (process.platform != 'linux')) { | ||
console.error("`" + process.platform + "` platform is not supported."); | ||
@@ -16,0 +16,0 @@ process.exit(1); |
{ | ||
"name": "objc2swift", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Objective-C to Swift Converter", | ||
@@ -23,5 +23,8 @@ "main": "src/main.js", | ||
"diff": "^5.0.0", | ||
"http-server": "^14.1.1", | ||
"pegjs": "^0.10.0", | ||
"webpack": "^4.46.0", | ||
"webpack-cli": "^4.7.2" | ||
"process": "^0.11.10", | ||
"util": "^0.12.5", | ||
"webpack": "^5.88.1", | ||
"webpack-cli": "^5.1.4" | ||
}, | ||
@@ -33,2 +36,3 @@ "scripts": { | ||
"build": "npm run build-parser && npm run build-pp-parser", | ||
"server": "http-server -c 0 -o ./docs", | ||
"webpack": "webpack" | ||
@@ -51,4 +55,4 @@ }, | ||
"engines": { | ||
"node": ">= 4.2.0" | ||
"node": ">=10.0.0" | ||
} | ||
} |
@@ -89,3 +89,7 @@ module.exports = (function() { | ||
"__unused":"__attribute__((deprecated))", | ||
"__used":"__attribute__((used))", | ||
"__used":"__attribute__((used))", | ||
"NS_DURING":"@try {", | ||
"NS_HANDLER":"} @catch (NSException * localException) {", | ||
"NS_ENDHANDLER":"}", | ||
}; | ||
@@ -92,0 +96,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
704462
24611
7