forked from elwayman02/ember-scroll-modifiers
-
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.
- Loading branch information
Showing
14 changed files
with
20,188 additions
and
91 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,26 @@ | ||
name: Build and Assert Assets Exists | ||
description: Build the package and assert that file contents exist as we expect | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Build and Assert Output | ||
shell: bash | ||
run: |- | ||
echo ' | ||
target: ember-scroll-modifiers/ | ||
setup: | ||
run: pnpm build | ||
cwd: ./ember-scroll-modifiers | ||
# Will use once on TS | ||
# expect: | | ||
# dist/index.mjs | ||
# dist/index.mjs.map | ||
# ' >> assert-contents.config.yml | ||
# npx assert-folder-contents | ||
- name: Upload dist assets to cache | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: ${{ env.dist }} |
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,10 @@ | ||
name: Download built package from cache | ||
description: Download built package from cache | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Download built package from cache | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dist | ||
path: ${{ env.dist }} |
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 |
---|---|---|
|
@@ -17,8 +17,8 @@ | |
}, | ||
"scripts": { | ||
"build": "rollup --config", | ||
"lint": "concurrently 'yarn:lint:*(!fix)' --names 'lint:'", | ||
"lint:fix": "concurrently 'yarn:lint:*:fix' --names 'fix:'", | ||
"lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'", | ||
"lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'", | ||
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern", | ||
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern", | ||
"lint:js": "eslint . --cache", | ||
|
@@ -65,12 +65,11 @@ | |
"crypto" | ||
], | ||
"engines": { | ||
"node": "16.* || >= 18" | ||
}, | ||
"volta": { | ||
"node": "18.20.4", | ||
"yarn": "1.22.22" | ||
"node": ">= 18", | ||
"yarn": "use pnpm", | ||
"npm": "use pnpm" | ||
}, | ||
"packageManager": "[email protected]", | ||
"ember": { | ||
"edition": "octane" | ||
}, | ||
|
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 |
---|---|---|
|
@@ -5,10 +5,6 @@ | |
"repository": "", | ||
"license": "MIT", | ||
"author": "", | ||
"workspaces": [ | ||
"ember-scroll-modifiers", | ||
"test-app" | ||
], | ||
"scripts": { | ||
"build": "pnpm --filter ember-scroll-modifiers run build", | ||
"lint": "pnpm --filter ember-scroll-modifiers run lint", | ||
|
@@ -21,5 +17,6 @@ | |
}, | ||
"devDependencies": { | ||
"concurrently": "^8.2.2" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.