@vroskus/upload-sourcemaps 1.0.1 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/index.js +4 -1
- package/package.json +4 -3
package/bin/index.js
CHANGED
|
@@ -64,7 +64,10 @@ async function createReleaseAndUpload() {
|
|
|
64
64
|
|
|
65
65
|
console.log('Uploading source maps');
|
|
66
66
|
|
|
67
|
-
const filesPath = path.
|
|
67
|
+
const filesPath = path.join(
|
|
68
|
+
process.cwd(),
|
|
69
|
+
uploadSourcemapsConfig.filesPath || './dist',
|
|
70
|
+
)
|
|
68
71
|
|
|
69
72
|
await cli.releases.uploadSourceMaps(
|
|
70
73
|
version,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vroskus/upload-sourcemaps",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,10 +19,11 @@
|
|
|
19
19
|
"upload-sourcemaps": "bin/index.js"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
|
-
"test": "echo 'No tests yet'"
|
|
22
|
+
"test": "echo 'No tests yet'",
|
|
23
|
+
"build": "echo 'Nothing to build'"
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
|
25
|
-
"@sentry/cli": "
|
|
26
|
+
"@sentry/cli": "2.28.6"
|
|
26
27
|
},
|
|
27
28
|
"bugs": {
|
|
28
29
|
"url": "https://github.com/vroskus/upload-sourcemaps/issues"
|