@corva/create-app 0.110.1 → 0.110.3
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/lib/constants/package.js +4 -0
- package/package.json +1 -1
package/lib/constants/package.js
CHANGED
|
@@ -138,6 +138,9 @@ const uiPackage = {
|
|
|
138
138
|
'lint-staged': {
|
|
139
139
|
'src/**/*.{js,jsx,ts,tsx}': 'eslint --fix',
|
|
140
140
|
},
|
|
141
|
+
'resolutions': {
|
|
142
|
+
'@noble/hashes': '1.8.0',
|
|
143
|
+
},
|
|
141
144
|
};
|
|
142
145
|
|
|
143
146
|
const tsUiPackage = {
|
|
@@ -145,6 +148,7 @@ const tsUiPackage = {
|
|
|
145
148
|
devDependencies: tsUiDevDependencies,
|
|
146
149
|
// todo: temporary solution, ref https://github.com/oppia/oppia/issues/22283#issuecomment-2756641371
|
|
147
150
|
resolutions: {
|
|
151
|
+
...uiPackage.resolutions,
|
|
148
152
|
'@types/babel__traverse': '7.20.6',
|
|
149
153
|
},
|
|
150
154
|
};
|