Skip to content

Commit

Permalink
Merge pull request #34 from atom-community/renovate/devdependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Jun 22, 2022
2 parents 42bb772 + ad343c7 commit 5fdc393
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
node_arch:
- x64
include:
- os: windows-latest
- os: windows-2019
node_version: 12
node_arch: x64
- os: windows-2016
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,32 @@
{
"name": "papm",
"description": "Performant Atom Package Manager",
"version": "0.0.0",
"description": "Performant Atom Package Manager",
"repository": "https://github.com/atom-community/papm",
"license": "MIT",
"author": "Amin Yahyaabadi",
"repository": "https://github.com/atom-community/papm",
"main": "./lib/apm.js",
"bin": {
"apm": "bin/apm"
},
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"build": "npm run clean.lib && npm run tsc",
"build.test": "npm run get.fixtures && shx rm -rf dist-spec && shx cp -r spec dist-spec && babel ./dist-spec --out-dir ./dist-spec",
"check-version": "node script/check-version.js",
"clean.lib": "shx rm -rf lib/ dist-spec/",
"clean.bin": "shx rm -rf bin/node_darwin_x64 bin/node.exe bin/node",
"tsc": "tsc -p src/tsconfig.json || echo done",
"clean.lib": "shx rm -rf lib/ dist-spec/",
"copy": "shx cp -r src lib",
"build": "npm run clean.lib && npm run tsc",
"prepare": "npm run build",
"postinstall": "node ./script/download-node.js && shx chmod +x ./bin/npm && shx chmod +x ./bin/apm",
"format": "prettier --write .",
"get.fixtures": "node ./script/get-fixtures.js && shx cp -r ./spec/fixtures/r.tmbundle-patch/Snippets/ ./spec/fixtures/r.tmbundle/",
"postinstall": "node ./script/download-node.js && shx chmod +x ./bin/npm && shx chmod +x ./bin/apm",
"lint": "eslint . --fix",
"prepare": "npm run build",
"test": "npm run check-version && npm run build.test && jasmine-focused --captureExceptions dist-spec",
"build.test": "npm run get.fixtures && shx rm -rf dist-spec && shx cp -r spec dist-spec && babel ./dist-spec --out-dir ./dist-spec"
"test.format": "prettier . --check",
"test.lint": "eslint .",
"tsc": "tsc -p src/tsconfig.json || echo done"
},
"prettier": "prettier-config-atomic",
"dependencies": {
"@aminya/underscore-plus": "^1.9.0",
"@atom/plist": "0.4.4",
Expand Down Expand Up @@ -62,7 +63,7 @@
"@types/fs-plus": "3.0.2",
"@types/glob": "^7.1.4",
"@types/hosted-git-info": "^3.0.2",
"@types/jasmine": "^3.0.0",
"@types/jasmine": "^4.0.0",
"@types/mv": "2.1.2",
"@types/ncp": "~2.0.5",
"@types/npm": "^7.0.0",
Expand All @@ -72,7 +73,7 @@
"@types/rimraf": "^3.0.1",
"@types/season": "^6.0.1",
"@types/semver": "^7.3.7",
"@types/tar": "^4.0.5",
"@types/tar": "^6.0.0",
"@types/temp": "^0.9.1",
"@types/wordwrap": "1.0.1",
"@types/wrench": "~0.0.29",
Expand All @@ -82,10 +83,9 @@
"express": "^4.17.1",
"gitly": "^2.1.2",
"jasmine-focused": ">=1.0.7 <2.0",
"node-downloader-helper": "^1.0.18",
"node-gyp": "^8.0.0",
"prettier-config-atomic": "^2.1.0",
"node-downloader-helper": "^2.0.0",
"node-gyp": "^9.0.0",
"prettier-config-atomic": "^3.0.10",
"shx": "^0.3.3"
},
"prettier": "prettier-config-atomic"
}
}
6 changes: 3 additions & 3 deletions spec/fixtures/package-with-native-deps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "test-module",
"version": "1.0.0",
"main": "./index.js",
"engines": {
"atom": "*"
},
"dependencies": {
"native-dep": "./node_modules/native-dep"
},
"engines": {
"atom": "*"
}
}

0 comments on commit 5fdc393

Please sign in to comment.