mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-04-20 05:17:19 +00:00

On every startup, Arduino IDE checks for new versions of the IDE. If a newer version is available, a notification/dialog is shown offering an update. "Newer" is determined by comparing the version of the user's IDE to the latest available version on the update channel. This comparison is done according to the Semantic Versioning Specification ("SemVer"). In order to facilitate beta testing, builds are generated of the Arduino IDE at the current stage in development. These builds are given an identifying version of the following form: - <version>-snapshot-<short hash> - builds generated for every push and pull request that modifies relevant files - <version>-nightly-<YYYYMMDD> - daily builds of the tip of the default branch In order to cause these builds to be correctly considered "newer" than the release version, the version metadata must be bumped immediately following each release. This will also serve as the metadata bump for the next release in the event that release is a minor release. In case it is instead a minor or major release, the version metadata will need to be updated once more before the release tag is created.
80 lines
2.8 KiB
JSON
80 lines
2.8 KiB
JSON
{
|
|
"name": "arduino-ide",
|
|
"version": "2.3.4",
|
|
"description": "Arduino IDE",
|
|
"repository": "https://github.com/arduino/arduino-ide.git",
|
|
"author": "Arduino SA",
|
|
"license": "AGPL-3.0-or-later",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=18.17.0 <21"
|
|
},
|
|
"resolutions": {
|
|
"@theia/cli/@babel/traverse": "^7.23.2",
|
|
"@theia/cli/@theia/application-package/nano": "^10.1.3",
|
|
"**/@theia/core/msgpackr": "^1.10.1",
|
|
"nx/axios": "^1.6.7",
|
|
"**/ip": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@theia/cli": "1.41.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.0",
|
|
"@typescript-eslint/parser": "^5.59.0",
|
|
"@xhmikosr/downloader": "^13.0.1",
|
|
"eslint": "^8.39.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
|
"husky": "^6.0.0",
|
|
"ignore-styles": "^5.0.1",
|
|
"js-yaml": "4.1.0",
|
|
"lerna": "^7.1.4",
|
|
"lint-staged": "^11.0.0",
|
|
"node-fetch": "^2.6.1",
|
|
"node-gyp": "^9.3.0",
|
|
"prettier": "^2.3.1",
|
|
"reflect-metadata": "^0.1.10",
|
|
"rimraf": "^2.6.1",
|
|
"semver": "^7.3.2",
|
|
"style-dictionary": "^3.7.0",
|
|
"typescript": "^4.9.3",
|
|
"xhr2": "^0.2.1"
|
|
},
|
|
"scripts": {
|
|
"prepare": "lerna run prepare",
|
|
"cleanup": "rimraf ./**/node_modules && rm -rf ./node_modules ./.browser_modules ./arduino-ide-extension/build ./arduino-ide-extension/downloads ./arduino-ide-extension/Examples ./arduino-ide-extension/lib ./electron-app/lib ./electron-app/src-gen ./electron-app/gen-webpack.config.js",
|
|
"rebuild:browser": "theia rebuild:browser",
|
|
"rebuild:electron": "theia rebuild:electron",
|
|
"start": "yarn --cwd ./electron-app start",
|
|
"watch": "lerna run watch --parallel",
|
|
"build": "lerna run build",
|
|
"build:dev": "lerna run build:dev",
|
|
"test": "lerna run test",
|
|
"test:slow": "lerna run test:slow",
|
|
"update:version": "node ./scripts/update-version.js",
|
|
"i18n:generate": "theia nls-extract -e vscode -f \"+(arduino-ide-extension|electron-app|plugins)/**/*.ts?(x)\" -o ./i18n/en.json",
|
|
"i18n:check": "yarn i18n:generate && git add -N ./i18n && git diff --exit-code ./i18n",
|
|
"i18n:push": "node ./scripts/i18n/transifex-push.js ./i18n/en.json",
|
|
"i18n:pull": "node ./scripts/i18n/transifex-pull.js ./i18n/",
|
|
"themes:pull": "node ./scripts/themes/theme-tokens-pull.js",
|
|
"themes:generate": "node ./scripts/themes/theme-generator.js",
|
|
"compose-changelog": "yarn --cwd ./arduino-ide-extension compose-changelog"
|
|
},
|
|
"lint-staged": {
|
|
"./arduino-ide-extension/**/*.{ts,tsx}": [
|
|
"eslint --fix --quiet"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"workspaces": [
|
|
"arduino-ide-extension",
|
|
"electron-app"
|
|
]
|
|
}
|