Skip to content

Commit

Permalink
Merge pull request #3 from TurboWarp/merge-upstream
Browse files Browse the repository at this point in the history
Merge upstream
  • Loading branch information
GarboMuffin authored Dec 30, 2023
2 parents edaf758 + 96b956f commit 8e47e0f
Show file tree
Hide file tree
Showing 11 changed files with 16,633 additions and 3,268 deletions.
117 changes: 0 additions & 117 deletions .circleci/config.yml

This file was deleted.

10 changes: 4 additions & 6 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,18 @@ name: Node.js CI

on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 10.x
- run: npm install
node-version: 16.x
- run: npm ci
- run: npm run build
- run: npm test
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ dist/*
# Editors
/#*
*~

# Act
.secrets
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.0 (2023-12-20)


### Bug Fixes

* **deps:** update dependency scratch-render-fonts to v1.0.0-prerelease.20221102164332 ([e49c89f](https://github.com/scratchfoundation/scratch-svg-renderer/commit/e49c89f45a7e61464d7d60a847b93cb092d09f4f))
* **deps:** update dependency scratch-render-fonts to v1.0.0-prerelease.20231017225105 ([2765caf](https://github.com/scratchfoundation/scratch-svg-renderer/commit/2765cafdf6c0d4e8780097a1c885f2bb08c5ccff))
* **package:** update scratch-render-fonts to version 1.0.0-prerelease.20180605131737 ([3941d1c](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3941d1ccf3a6a60f7ba6f05478c51436de37d0e5))
* **package:** update scratch-render-fonts to version 1.0.0-prerelease.20180906193204 ([#47](https://github.com/scratchfoundation/scratch-svg-renderer/issues/47)) ([3c96b40](https://github.com/scratchfoundation/scratch-svg-renderer/commit/3c96b40543117133cfc8b866d0f97fc5a8e1d6c3))
* **package:** update transformation-matrix to version 1.15.0 ([af225a0](https://github.com/scratchfoundation/scratch-svg-renderer/commit/af225a066ba99d431975e9441e1283befe647967))


### Features

* sanitize css [@import](https://github.com/import) rules ([a3ba9eb](https://github.com/scratchfoundation/scratch-svg-renderer/commit/a3ba9eb15036b6983a6b7713d0f1d5114e00329f))


### Reverts

* Revert "Update to latest in scratch-render" ([b3b6d25](https://github.com/scratchfoundation/scratch-svg-renderer/commit/b3b6d25c3d6636b81df0e05d4484389a555f56c0))
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Fork of scratch-svg-renderer used by TurboWarp.

<!--
# scratch-svg-renderer
[![CircleCI](https://circleci.com/gh/LLK/scratch-svg-renderer/tree/develop.svg?style=shield&circle-token=239172a1b9275ee1e8f949489e6e36ea57b7fc86)](https://circleci.com/gh/LLK/scratch-svg-renderer?branch=develop)
Expand Down Expand Up @@ -60,3 +63,22 @@ To run scratch-svg-renderer locally as part of scratch-gui, for development:
## Donate
We provide [Scratch](https://scratch.mit.edu) free of charge, and want to keep it that way! Please consider making a [donation](https://secure.donationpay.org/scratchfoundation/) to support our continued engineering, design, community, and resource development efforts. Donations of any size are appreciated. Thank you!
## Committing
This project uses [semantic release](https://github.com/semantic-release/semantic-release) to ensure version bumps
follow semver so that projects depending on it don't break unexpectedly.
In order to automatically determine version updates, semantic release expects commit messages to follow the
[conventional-changelog](https://github.com/bcoe/conventional-changelog-standard/blob/master/convention.md)
specification.
You can use the [commitizen CLI](https://github.com/commitizen/cz-cli) to make commits formatted in this way:
```bash
npm install -g commitizen@latest cz-conventional-changelog@latest
```
Now you're ready to make commits using `git cz`.
-->
4 changes: 4 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
ignores: [message => message.startsWith('chore(release):')]
};
Loading

0 comments on commit 8e47e0f

Please sign in to comment.