Move manifests to top-level

This commit is contained in:
Nathan Bierema 2022-10-10 09:34:59 -04:00
parent fc3e471846
commit a9653874eb
5 changed files with 3 additions and 12 deletions

View File

@ -15,10 +15,7 @@ let config = baseConfig({
},
plugins: [new webpack.NoEmitOnErrorsPlugin()],
copy: true,
manifestJsonPath: path.join(
__dirname,
'../src/browser/extension/manifest.json'
),
manifestJsonPath: path.join(__dirname, '../chrome/manifest.json'),
});
config.watch = true;

View File

@ -13,8 +13,5 @@ export default baseConfig({
},
},
copy: true,
manifestJsonPath: path.join(
__dirname,
'../src/browser/extension/manifest.json'
),
manifestJsonPath: path.join(__dirname, '../chrome/manifest.json'),
});

View File

@ -10,8 +10,5 @@ export default baseConfig({
},
},
copy: true,
manifestJsonPath: path.join(
__dirname,
'../src/browser/firefox/manifest.json'
),
manifestJsonPath: path.join(__dirname, '../firefox/manifest.json'),
});