Skip to content

Commit

Permalink
Go back to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
cndreisbach committed Nov 14, 2024
1 parent 64b9ced commit a870007
Show file tree
Hide file tree
Showing 4 changed files with 3,841 additions and 4,813 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ jobs:
node-version: 20.14.0

- name: Install Dependencies
run: pnpm install
run: yarn install

- name: Lint
run: pnpm lint
run: yarn run lint

- name: Build
run: pnpm build
run: yarn run build

- name: Configure NPM
env:
ARTIFACTORY_USERNAME: ${{ secrets.DEVEX_ARTIFACTORY_WRITER_USERNAME }}
ARTIFACTORY_PASSWORD: ${{ secrets.DEVEX_ARTIFACTORY_WRITER_TOKEN_BASE64_ENC }}
run: |
pnpm config set "@loomhq:registry" "https://packages.atlassian.com/api/npm/atlassian-npm/"
pnpm config set "//packages.atlassian.com/api/npm/atlassian-npm/:username" "${ARTIFACTORY_USERNAME}"
pnpm config set "//packages.atlassian.com/api/npm/atlassian-npm/:_password" "${ARTIFACTORY_PASSWORD}"
npm config set "@loomhq:registry" "https://packages.atlassian.com/api/npm/atlassian-npm/"
npm config set "//packages.atlassian.com/api/npm/atlassian-npm/:username" "${ARTIFACTORY_USERNAME}"
npm config set "//packages.atlassian.com/api/npm/atlassian-npm/:_password" "${ARTIFACTORY_PASSWORD}"
- name: Publish (dry-run)
run: pnpm publish --dry-run
run: npm publish --dry-run
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "[forked] A cross browser solution to scrolling during drag and drop.",
"engines": {
"node": "^20.14.0",
"pnpm": "^9.12.3"
"yarn": "^1.22.22"
},
"packageManager": "[email protected]",
"packageManager": "[email protected]",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
Expand All @@ -17,11 +17,11 @@
"publish:major": "npm version major && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"postpublish": "git push origin master --tags"
"postpublish": "git push origin main --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/loomhq/react-dnd-scrollzone"
"url": "git+https://github.com/loomhq/react-dnd-scrollzone.git"
},
"bugs": {
"url": "https://github.com/loomhq/react-dnd-scrollzone/issues"
Expand Down Expand Up @@ -91,4 +91,4 @@
"check-leaks": true,
"throw-deprecation": true
}
}
}
Loading

0 comments on commit a870007

Please sign in to comment.