Skip to content

Commit

Permalink
Merge pull request #59 from atom-community/update [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Jun 30, 2022
2 parents 9a05e89 + 24a6e47 commit 8c9a41d
Show file tree
Hide file tree
Showing 5 changed files with 1,320 additions and 1,234 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: CI
on:
- push
- pull_request
pull_request:
push:
branches:
- master

defaults:
run:
Expand All @@ -21,15 +23,20 @@ jobs:
# - windows-latest
atom_channel: [stable, beta]
steps:
- uses: actions/checkout@v3
- uses: UziTech/action-setup-atom@v1
- name: Install Node
uses: actions/setup-node@v3
with:
channel: ${{ matrix.atom_channel }}
- name: Versions
run: apm -v
- name: Install APM dependencies
node-version: 12
architecture: x64

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 6

- name: Install and build
run: |
apm install
pnpm install
Lint:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
Expand Down
59 changes: 33 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,48 +2,52 @@
"name": "babel-preset-atomic",
"version": "4.3.0",
"description": "babel configuration used in atom-ide-community",
"homepage": "https://github.com/atom-ide-community/babel",
"repository": "https://github.com/atom-ide-community/babel",
"license": "MIT",
"author": "Amin Yahyaabadi",
"main": "index.js",
"main": "./dist/index.js",
"files": [
"./index.js"
"./dist/",
"./src/"
],
"scripts": {
"build": "tsc -p ./src/tsconfig.json",
"bump": "ncu -u",
"format": "prettier --write .",
"lint": "eslint . --fix",
"prepare": "npm run build",
"test.format": "prettier . --check",
"test.lint": "eslint ."
},
"prettier": "prettier-config-atomic",
"dependencies": {
"@babel/cli": "^7",
"@babel/core": "^7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.2",
"@babel/plugin-proposal-do-expressions": "7.16.7",
"@babel/plugin-proposal-export-default-from": "7.17.12",
"@babel/plugin-proposal-export-namespace-from": "7.17.12",
"@babel/plugin-proposal-function-bind": "7.16.7",
"@babel/plugin-proposal-function-sent": "7.18.2",
"@babel/plugin-proposal-json-strings": "7.17.12",
"@babel/plugin-proposal-logical-assignment-operators": "7.17.12",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.17.12",
"@babel/plugin-proposal-numeric-separator": "7.16.7",
"@babel/plugin-proposal-optional-chaining": "7.17.12",
"@babel/plugin-proposal-pipeline-operator": "7.18.2",
"@babel/plugin-proposal-private-methods": "7.17.12",
"@babel/plugin-proposal-private-property-in-object": "^7.16.7",
"@babel/plugin-proposal-throw-expressions": "7.16.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.6",
"@babel/plugin-proposal-do-expressions": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.18.6",
"@babel/plugin-proposal-export-namespace-from": "7.18.6",
"@babel/plugin-proposal-function-bind": "7.18.6",
"@babel/plugin-proposal-function-sent": "7.18.6",
"@babel/plugin-proposal-json-strings": "7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.18.6",
"@babel/plugin-proposal-pipeline-operator": "7.18.6",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.18.6",
"@babel/plugin-proposal-throw-expressions": "7.18.6",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/plugin-transform-reserved-words": "^7.16.7",
"@babel/preset-env": "7.18.2",
"@babel/preset-flow": "7.17.12",
"@babel/preset-react": "7.17.12",
"@babel/preset-typescript": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/plugin-transform-reserved-words": "^7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-flow": "7.18.6",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "^7.18.6",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-codegen": "^4.1.5",
"babel-plugin-preval": "^5.1.0",
Expand All @@ -52,9 +56,12 @@
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"eslint-config-atomic": "^1.17.0",
"@types/babel__core": "^7.1.19",
"@types/babel__preset-env": "7.9.2",
"eslint-config-atomic": "^1.18.1",
"npm-check-updates": "14.1.1",
"prettier-config-atomic": "^3.0.6"
"prettier-config-atomic": "^3.0.10",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@babel/cli": "^7",
Expand Down
Loading

0 comments on commit 8c9a41d

Please sign in to comment.