Package source code instead of source maps
Repository details (talkie)
- Project page
- talkie
- Project log category
- talkie (725 entries)
- Repository
- @joelpurra/talkie
- Owner
- @joelpurra
- Issues
- Issues on Github
- Contributors
- Contributors on Github
- Project status
- ⏲️ This project has had recent commits.
- 📂 This project is open.
- 🌠 This project is popular.
- Repository activity period
- 🗓—
- Commits
- 770 commits
- Stars
- 75 stars
Commit details (1fa2666c)
- Author
- Joel Purra
- Authored at
- Committer
- Joel Purra
- Committed at
Commit message
Package source code instead of source maps
- Mozilla has changed their requirements for packages with built or minified code.
- Previously, the source maps (generated at build-time) were required as a separate
.zipfile.- Currently, the source code and build instructions are required in a
.zipfile.- In addition, any third-party library needs to reference a "stable" (reproducible, verifiable) version.
- Referencing the public
gitrepository and version tag is not considered enough, but uploading a.zipfile with the same content should be.See
Raw text
Package source code instead of source maps - Mozilla has changed their requirements for packages with built or minified code. - Previously, the source maps (generated at build-time) were required as a separate `.zip` file. - Currently, the source code and build instructions are required in a `.zip` file. - In addition, any third-party library needs to reference a "stable" (reproducible, verifiable) version. - Referencing the public `git` repository and version tag is not considered enough, but uploading a `.zip` file with the same content should be. See - https://extensionworkshop.com/documentation/publish/source-code-submission/ - https://extensionworkshop.com/documentation/publish/third-party-library-usage/