-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ember-cli/fork
Fork the library
- Loading branch information
Showing
5 changed files
with
6,320 additions
and
4,405 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
pull_request: {} | ||
|
||
concurrency: | ||
group: ci-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
cache: pnpm | ||
- run: pnpm i --frozen-lockfile | ||
- run: pnpm run lint | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
strategy: | ||
matrix: | ||
node-version: ['18.x', '20.x', '22.x'] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: pnpm | ||
- run: pnpm i --frozen-lockfile | ||
- run: pnpm test | ||
|
||
floating: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: latest | ||
cache: pnpm | ||
- run: pnpm i --no-lockfile | ||
- run: pnpm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
{ | ||
"name": "remove-types", | ||
"author": "Chris Freeman", | ||
"version": "1.0.0", | ||
"name": "babel-remove-types", | ||
"contributors": [ | ||
"Chris Freeman", | ||
"Chris Manson <[email protected]>" | ||
], | ||
"version": "0.0.0", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/cafreeman/remove-types" | ||
"url": "https://github.com/ember-cli/babel-remove-types" | ||
}, | ||
"keywords": [ | ||
"typescript", | ||
|
@@ -28,18 +31,20 @@ | |
"ts:cjs": "tsc -p ts/cjs.tsconfig.json", | ||
"ts:esm": "tsc -p ts/esm.tsconfig.json", | ||
"ts:typedefs": "tsc -p ts/types.tsconfig.json && mv defs/* . && rimraf defs", | ||
"ts:all": "yarn ts:esm && yarn ts:cjs && yarn ts:typedefs", | ||
"build": "yarn clean && yarn ts:all", | ||
"ts:all": "pnpm ts:esm && pnpm ts:cjs && pnpm ts:typedefs", | ||
"build": "pnpm clean && pnpm ts:all", | ||
"clean": "rimraf ./*.d.ts ./*.d.ts.map ./dist", | ||
"lint": "eslint src test", | ||
"prepublishOnly": "yarn test && yarn build", | ||
"postpublish": "yarn clean", | ||
"prepublishOnly": "pnpm test && pnpm build", | ||
"prepare": "pnpm build", | ||
"postpublish": "pnpm clean", | ||
"release": "release-it", | ||
"test": "jest", | ||
"test:watch": "jest --watch" | ||
}, | ||
"devDependencies": { | ||
"@types/babel__core": "^7.1.18", | ||
"@types/babel__traverse": "^7.20.6", | ||
"@types/jest": "^27.4.0", | ||
"@typescript-eslint/eslint-plugin": "^5.10.0", | ||
"@typescript-eslint/parser": "^5.10.0", | ||
|
@@ -60,5 +65,6 @@ | |
}, | ||
"release-it": { | ||
"github": true | ||
} | ||
}, | ||
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b" | ||
} |
Oops, something went wrong.