@rimori/client 2.4.0-next.1 → 2.4.0-next.2
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.
|
@@ -15,6 +15,7 @@ jobs:
|
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
permissions:
|
|
17
17
|
contents: write
|
|
18
|
+
id-token: write
|
|
18
19
|
|
|
19
20
|
steps:
|
|
20
21
|
- name: Checkout repository
|
|
@@ -87,14 +88,10 @@ jobs:
|
|
|
87
88
|
generate_release_notes: true
|
|
88
89
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
89
90
|
|
|
90
|
-
- name: Publish to npm
|
|
91
|
+
- name: Publish to npm
|
|
91
92
|
id: npm_publish
|
|
92
|
-
if: secrets.NPM_TOKEN != ''
|
|
93
|
-
env:
|
|
94
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
95
93
|
run: |
|
|
96
|
-
echo "
|
|
97
|
-
npm publish --tag prerelease || echo "npm publish skipped (may already exist)"
|
|
94
|
+
npm publish --provenance --access public --tag prerelease || echo "npm publish skipped (may already exist)"
|
|
98
95
|
|
|
99
96
|
- name: Send Slack notification - Success
|
|
100
97
|
if: success()
|
package/package.json
CHANGED
|
@@ -18,8 +18,6 @@ import { AccomplishmentController, AccomplishmentPayload } from '../controller/A
|
|
|
18
18
|
import { RimoriCommunicationHandler, RimoriInfo } from './CommunicationHandler';
|
|
19
19
|
import { Translator } from '../controller/TranslationController';
|
|
20
20
|
import { Logger } from './Logger';
|
|
21
|
-
// import { setTheme } from '../../../react-client/src/plugin/ThemeSetter';
|
|
22
|
-
// import { StandaloneClient } from './StandaloneClient';
|
|
23
21
|
|
|
24
22
|
// Add declaration for WorkerGlobalScope
|
|
25
23
|
declare const WorkerGlobalScope: any;
|