Skip to content

Commit

Permalink
fix: lock file maintenance (#84)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop node 12 and 14
  • Loading branch information
renovate[bot] committed Jun 13, 2023
1 parent 875c28f commit dcf0bf2
Show file tree
Hide file tree
Showing 15 changed files with 6,956 additions and 5,014 deletions.
3 changes: 3 additions & 0 deletions .baserc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"name": "@dword-design/node",
"supportedNodeVersions": [16],
"nodeVersion": 16,
"seeAlso": [
{ "repository": "nuxt-mail", "description": "Adds email sending capability to a Nuxt.js app. Adds a server route, an injected variable, and uses nodemailer to send emails." },
{ "repository": "nuxt-route-meta", "description": "Adds Nuxt page data to route meta at build time." },
Expand Down
7 changes: 7 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-16",
"updateContentCommand": "yarn --frozen-lockfile"
}
36 changes: 16 additions & 20 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
lfs: true
ref: ${{ github.event.pull_request.head.repo.full_name == github.repository &&
github.event.pull_request.head.ref || '' }}
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- run: git config --global user.email "actions@github.com"
- run: git config --global user.name "GitHub Actions"
- run: yarn --frozen-lockfile
Expand All @@ -38,39 +38,35 @@ jobs:
needs: cancel-existing
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn --frozen-lockfile
- run: yarn test
- env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn test
- if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Image Snapshot Diffs
path: "**/__image_snapshots__/__diff_output__"
- if: matrix.os == 'ubuntu-latest' && matrix.node == 14
uses: codecov/codecov-action@v2
- if: matrix.os == 'ubuntu-latest' && matrix.node == 16
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
strategy:
matrix:
exclude:
- node: 12
include:
- node: 16
os: ubuntu-latest
- node: 16
os: macos-latest
- node: 12
- node: 16
os: windows-latest
node:
- 12
- 14
os:
- macos-latest
- windows-latest
- ubuntu-latest
name: build
on:
pull_request: {}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/deprecated-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
lfs: true
- continue-on-error: true
Expand All @@ -20,10 +20,11 @@ jobs:
update_existing: true
- if: ${{ !steps.check-deprecated-js-deps.outputs.deprecated &&
steps.create-deprecation-issue.outputs.number }}
uses: peter-evans/close-issue@v1
uses: peter-evans/close-issue@v2
with:
comment: Auto-closing the issue
issue-number: ${{ steps.create-deprecation-issue.outputs.number }}
- uses: gautamkrishnar/keepalive-workflow@v1
name: deprecated-dependencies
on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: micnncim/action-label-syncer@v1
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/sync-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: jaid/action-sync-node-meta@v2.0.0
with:
approve: false
commitMessage: "fix: write GitHub metadata to package.json [{changes}]"
githubToken: ${{ secrets.GITHUB_TOKEN }}
- uses: gautamkrishnar/keepalive-workflow@v1
name: sync-metadata
on:
schedule:
Expand Down
7 changes: 7 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@ FROM gitpod/workspace-full:latest
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
RUN sudo apt-get install git-lfs
RUN git lfs install

# https://www.gitpod.io/docs/languages/javascript
RUN bash -c 'VERSION="16" && source $HOME/.nvm/nvm.sh && nvm install $VERSION && nvm use $VERSION && nvm alias default $VERSION'

RUN echo "\nexport PATH=$(yarn global bin):\$PATH" >> /home/gitpod/.bashrc

RUN yarn global add gitpod-env-per-project @babel/node @babel/core

RUN sudo apt-get install -y graphviz

RUN brew install gh

# Puppeteer dependencies
Expand Down
16 changes: 13 additions & 3 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
image:
file: .gitpod.Dockerfile
tasks:
- command: eval $(gitpod-env-per-project)
init: git config --global user.name "Sebastian Landwehr" && git lfs pull && yarn
--frozen-lockfile
- before: >-
echo "export
PUPPETEER_CACHE_DIR=/workspace/nuxt-linaria/node_modules/.cache/puppeteer"
>> /home/gitpod/.bashrc
gitpod-env-per-project >> /home/gitpod/.bashrc && source /home/gitpod/.bashrc
init: |-
git config --global user.name "Sebastian Landwehr"
git config diff.lfs.textconv cat
git lfs pull
yarn --frozen-lockfile
vscode:
extensions:
- https://sebastianlandwehr.com/vscode-extensions/karlito40.fix-irregular-whitespace-0.1.1.vsix
- https://sebastianlandwehr.com/vscode-extensions/adrianwilczynski.toggle-hidden-1.0.2.vsix
- octref.vetur@0.33.1
- Tobermory.es6-string-html
- zjcompt.es6-string-javascript
4 changes: 2 additions & 2 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx commitlint --edit "$1"
23 changes: 13 additions & 10 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
":semanticCommits",
":semanticPrefixFix"
],
"ignorePaths": [
".github/workflows/build.yml"
],
"github-actions": {
"enabled": false
},
"labels": [
"maintenance"
],
Expand All @@ -14,14 +14,17 @@
"enabled": true,
"semanticCommitType": "chore"
},
"packageRules": [
"rangeStrategy": "replace",
"regexManagers": [
{
"automerge": true,
"matchCurrentVersion": ">=1.0.0",
"matchUpdateTypes": [
"minor",
"patch"
]
"datasourceTemplate": "github-tags",
"fileMatch": [
"\\.js$"
],
"matchStrings": [
"(^|\\s)gitHubAction`(?<depName>.*?)@v(?<currentValue>.*?)`"
],
"versioningTemplate": "npm"
}
],
"semanticCommitScope": null
Expand Down
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
".babelrc.json": true,
".commitlintrc.json": true,
".cz.json": true,
".devcontainer": true,
".editorconfig": true,
".eslintrc.json": true,
".gitattributes": true,
Expand All @@ -16,6 +17,7 @@
".nyc_output": true,
".releaserc.json": true,
".renovaterc.json": true,
".vscode": true,
"CHANGELOG.md": true,
"LICENSE.md": true,
"coverage": true,
Expand Down
24 changes: 16 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,34 +15,42 @@
"funding": "https://github.com/sponsors/dword-design",
"license": "MIT",
"author": "Sebastian Landwehr <info@sebastianlandwehr.com>",
"type": "module",
"exports": "./dist/index.js",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"checkUnknownFiles": "base checkUnknownFiles",
"commit": "base commit",
"depcheck": "base depcheck",
"dev": "base dev",
"lint": "base lint",
"prepare": "base prepare",
"prepublishOnly": "base prepublishOnly",
"test": "base test"
},
"dependencies": {
"@dword-design/functions": "^4.0.0",
"linaria": "^2.0.0"
},
"devDependencies": {
"@dword-design/base": "^8.0.0",
"@dword-design/puppeteer": "^5.0.0",
"depcheck-package-name": "^2.0.0",
"nuxt": "~2.15.0",
"output-files": "^2.0.0",
"@dword-design/base": "^10.0.8",
"@dword-design/functions": "^5.0.20",
"@dword-design/puppeteer": "^6.0.10",
"@dword-design/tester": "^2.0.19",
"@dword-design/tester-plugin-puppeteer": "^2.1.68",
"@dword-design/tester-plugin-tmp-dir": "^2.1.26",
"depcheck-package-name": "^3.0.0",
"execa": "^7.1.1",
"nuxt": "^2",
"nuxt-dev-ready": "^2.0.1",
"output-files": "^2.0.28",
"postcss-hexrgba": "^2.0.0",
"with-local-tmp-dir": "^4.0.0"
"tree-kill-promise": "^3.0.14"
},
"engines": {
"node": ">=12"
"node": ">=16"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 1 addition & 3 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { find } from '@dword-design/functions'

export default function () {
this.extendBuild(config => {
const jsRule = config.module.rules |> find(rule => rule.test.test('.js'))
const jsRule = config.module.rules.find(rule => rule.test.test('.js'))
jsRule.use.push({
loader: require.resolve('linaria/loader'),
options: {
Expand Down

0 comments on commit dcf0bf2

Please sign in to comment.