Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit 650537a

Browse files
Merge branch 'feature/reducing-bundle-size' into release
2 parents 28c92b9 + 3a548f4 commit 650537a

32 files changed

Lines changed: 7 additions & 695 deletions

CONTRIBUTING.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ This repository is organized in the following branches:
6868
* `master`: production-ready code expected to be published on npm
6969
* `develop`: working tested code that merges the features and eventually gets
7070
hotfixes
71+
* `release`: production-ready code cleaned up to be merged with master
7172
* `feature/`: the branches under this name represent the features of this
7273
package and should be named accordingly
7374
* `testing`: for developing and fixing the test suites themselves
@@ -85,9 +86,12 @@ The usual workflow is as defined below:
8586
9. If everything goes well, checkout `feature/` again and merge `testing` to
8687
your `feature/`
8788
10. Merge `feature/` into `develop`
89+
11. When the requirements of a new release are met, it will be merged in
90+
`release` and then in `master`.
91+
Tests or build files should not be included in the releases.
8892

8993
> Note: please make sure that all the branches you're working on are up-to-date,
90-
> and do not directly merge on `master`.
94+
> and do not directly merge on `master` or `release`.
9195
9296
### Code style
9397

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# esbuild-sass-modules-plugin
22
A sass module loader plugin for esbuild.
33

4-
![npm package version](https://img.shields.io/static/v1?label=%40squirrelnetwork%2Fesbuild-sass-modules-plugin&message=1.0.0&color=5AA9E6&logo=npm&logoColor=FF6392)
4+
![npm package version](https://img.shields.io/static/v1?label=%40squirrelnetwork%2Fesbuild-sass-modules-plugin&message=1.0.1&color=5AA9E6&logo=npm&logoColor=FF6392)
55

66
This plugin allows .scss and .sass files to be imported as modules in javascript
77
files.
File renamed without changes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@squirrelnetwork/esbuild-sass-modules-plugin",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A sass module loader plugin for esbuild.",
55
"main": "src/index.js",
66
"type": "module",

test/constants.js

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)