Skip to content

Commit

Permalink
Merge pull request #102 from elycruz/dev
Browse files Browse the repository at this point in the history
Root configurations, and meta data files, Cleanup
  • Loading branch information
elycruz committed Sep 1, 2022
2 parents b4b099d + 12a82b4 commit ca070ca
Show file tree
Hide file tree
Showing 29 changed files with 5,917 additions and 458 deletions.
18 changes: 0 additions & 18 deletions .circleci/config.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI
name: Build and Test

on:
push:
Expand All @@ -10,13 +10,13 @@ on:
branches: [ master, dev ]

jobs:
build:
build-and-test:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
6 changes: 3 additions & 3 deletions publish-master.yml.txt → .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
# and https://docs.github.com/en/actions/guides/publishing-nodejs-packages#publishing-packages-to-the-npm-registry .

name: Node.js Package
name: Publish

on:
release:
types: [created]

jobs:
build-test-publish-npm:
build-test-publish-to-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -22,7 +22,7 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

build-test-publish-gpr:
build-test-publish-to-github-pkgs:
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
10 changes: 6 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.DS_Store
.nyc_output
.idea/

/coverage
/node_modules
.nyc_output/
.tests-output/

coverage/
dist/
node_modules/
ts3.5/
25 changes: 14 additions & 11 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
rollup*
tsconfig*
CHANGELOG.md
UNALLOCATED*
.circleci/
.github/
.idea/
.nyc_output/

.editorconfig
.gitignore
test/
src/
scripts/

CHANGELOG*
CODEOWNERS*
rollup*
tsconfig*

coverage/
.nyc_output/
.idea/
.github/
.circleci/
scripts/
src/
test/
21 changes: 21 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# CODEOWNERS file
# ----
# @see following link for syntax:
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
# ----

# Protected files
# ----
.circleci @elycruz
.editorconfig @elycruz
.gitignore @elycruz
.npmignore @elycruz
.github/ @elycruz
./*.json @elycruz

LICENSE @elycruz
README @elycruz
rollup* @elycruz

package-lock.json

4 changes: 2 additions & 2 deletions LICENSE.md → LICENSE
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
The MIT License (MIT)

Copyright (c) 2016 Thomas Ghysels
Copyright (c) 2016 rollup-plugin-sass maintainers (see './MAINTAINERS' file)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8 changes: 8 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Maintainers

2022 Ely De La Cruz (https://github.com/elycruz)

# Legacy

2016 BinRui.Guan <differui@gmail.com> - Author
2016 Thomas Ghysels (https://github.com/thgh)
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rollup-plugin-sass [![CircleCI](https://img.shields.io/circleci/project/github/differui/rollup-plugin-sass/master.svg?style=flat-square)](https://circleci.com/gh/differui/rollup-plugin-sass) [![issues](https://img.shields.io/github/issues/differui/rollup-plugin-sass.svg?style=flat-square)](https://www.npmjs.com/package/rollup-plugin-sass) [![npm](https://img.shields.io/npm/v/rollup-plugin-sass.svg?style=flat-square)](https://www.npmjs.com/package/rollup-plugin-sass) [![mit](https://img.shields.io/npm/l/rollup-plugin-sass.svg?style=flat-square)](https://opensource.org/licenses/MIT) [![Coverage Status](https://coveralls.io/repos/github/differui/rollup-plugin-sass/badge.svg?branch=master)](https://coveralls.io/github/differui/rollup-plugin-sass?branch=master)
rollup-plugin-sass [![build](https://github.com/elycruz/rollup-plugin-sass/actions/workflows/dev-build-and-test.yml/badge.svg)](https://github.com/elycruz/rollup-plugin-sass/actions/workflows/dev-build-and-test.yml)[![CircleCI](https://img.shields.io/circleci/project/github/differui/rollup-plugin-sass/master.svg?style=flat-square)](https://circleci.com/gh/differui/rollup-plugin-sass) [![issues](https://img.shields.io/github/issues/differui/rollup-plugin-sass.svg?style=flat-square)](https://www.npmjs.com/package/rollup-plugin-sass) [![npm](https://img.shields.io/npm/v/rollup-plugin-sass.svg?style=flat-square)](https://www.npmjs.com/package/rollup-plugin-sass) [![mit](https://img.shields.io/npm/l/rollup-plugin-sass.svg?style=flat-square)](https://opensource.org/licenses/MIT) [![Coverage Status](https://coveralls.io/repos/github/differui/rollup-plugin-sass/badge.svg?branch=master)](https://coveralls.io/github/differui/rollup-plugin-sass?branch=master)
=====

## Installation
Expand Down Expand Up @@ -155,6 +155,10 @@ sass({
})
```

## Maintainers

- [ElyCruz](https://github.com/elycruz)

## License

MIT &copy; [BinRui.Guan](mailto:differui@gmail.com)
[MIT](./LICENSE)
4 changes: 0 additions & 4 deletions UNALLOCATED_TODOS.md

This file was deleted.

4 changes: 0 additions & 4 deletions dist/index.d.ts

This file was deleted.

166 changes: 0 additions & 166 deletions dist/index.js

This file was deleted.

0 comments on commit ca070ca

Please sign in to comment.