File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 3030 env :
3131 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3232 NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
33- working-directory : ./dist
Original file line number Diff line number Diff line change 11import { writeFileSync } from 'fs'
22import { join } from 'path'
33import { spawnSync } from 'child_process'
4+ import * as url from 'url'
45
56import prepAdapter from 'sveltekit-adapter-aws-base'
67
8+ const __dirname = url . fileURLToPath ( new URL ( '.' , import . meta. url ) )
9+
710export interface AWSAdapterProps {
811 artifactPath ?: string
912 autoDeploy ?: boolean
Original file line number Diff line number Diff line change 1- export { adapter } from './adapter'
1+ export { adapter } from './adapter.js '
Original file line number Diff line number Diff line change 7777 [
7878 " @semantic-release/changelog" ,
7979 {
80- "changelogFile" : " ../CHANGELOG.md"
80+ "changelogFile" : " CHANGELOG.md"
81+ }
82+ ],
83+ [
84+ " @semantic-release/npm" ,
85+ {
86+ "pkgRoot" : " dist"
8187 }
8288 ],
83- " @semantic-release/npm" ,
8489 " @semantic-release/github" ,
8590 [
8691 " @semantic-release/git" ,
8792 {
8893 "assets" : [
89- " ../ CHANGELOG.md"
94+ " CHANGELOG.md"
9095 ],
9196 "message" : " chore(release): set `package.json` to ${nextRelease.version} [skip ci]\n\n ${nextRelease.notes}"
9297 }
You can’t perform that action at this time.
0 commit comments