diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000000..7e3549b0a2b --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,38 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/rust +{ + "name": "Rust", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/rust:1-1-bullseye", + "features": { + "ghcr.io/devcontainers/features/node:1": { + "nodeGypDependencies": true, + "version": "18", + "nvmVersion": "latest" + } + } + + // Use 'mounts' to make the cargo cache persistent in a Docker Volume. + // "mounts": [ + // { + // "source": "devcontainer-cargo-cache-${devcontainerId}", + // "target": "/usr/local/cargo", + // "type": "volume" + // } + // ] + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Use 'postCreateCommand' to run commands after the container is created. + // "postCreateCommand": "rustc --version", + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..f33a02cd16e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for more information: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# https://containers.dev/guide/dependabot + +version: 2 +updates: + - package-ecosystem: "devcontainers" + directory: "/" + schedule: + interval: weekly diff --git a/packages/core/cache/package.json b/packages/core/cache/package.json index aaa4e170e0b..fd00f8abe0c 100644 --- a/packages/core/cache/package.json +++ b/packages/core/cache/package.json @@ -1,5 +1,6 @@ { "name": "@parcel/cache", + "description": "Interface for defining caches and file-system, IDB and LMDB implementations.", "version": "2.12.0", "license": "MIT", "publishConfig": { diff --git a/packages/core/diagnostic/package.json b/packages/core/diagnostic/package.json index ded9de9ff4b..25738e43b95 100644 --- a/packages/core/diagnostic/package.json +++ b/packages/core/diagnostic/package.json @@ -1,6 +1,7 @@ { "name": "@parcel/diagnostic", "version": "2.12.0", + "description": "Types and utilities for printing source-code located errors, warning and information messages.", "license": "MIT", "publishConfig": { "access": "public" diff --git a/packages/core/feature-flags/package.json b/packages/core/feature-flags/package.json index 0c8dafc17eb..37430981858 100644 --- a/packages/core/feature-flags/package.json +++ b/packages/core/feature-flags/package.json @@ -1,7 +1,7 @@ { "name": "@parcel/feature-flags", "version": "2.12.0", - "description": "Blazing fast, zero configuration web application bundler", + "description": "Provides internal feature-flags for the parcel codebase.", "license": "MIT", "publishConfig": { "access": "public"