Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml'
version: 2.1

# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects.
# See: https://circleci.com/docs/2.0/orb-intro/
orbs:
node: circleci/node@4.7

# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
workflows:
sample: # This is the name of the workflow, feel free to change it to better match your workflow.
# Inside the workflow, you define the jobs you want to run.
jobs:
- node/test:
# This is the node version to use for the `cimg/node` tag
# Relevant tags can be found on the CircleCI Developer Hub
# https://circleci.com/developer/images/image/cimg/node
version: '16.13.2'
# If you are using yarn, change the line below from "npm" to "yarn"
pkg-manager: yarn
7 changes: 2 additions & 5 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
src
node_modules
.npmignore
.gitignore
rollup.config.js
**/*yarn*
esbuild.config*.js
babel.config*.json
7 changes: 2 additions & 5 deletions .babelrc → babel.config.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
{
"env": {
"test": {
"presets": ["env"]
"presets": ["@babel/preset-env"]
},
"production": {
"presets": [
["env", {
["@babel/preset-env", {
"modules": false
}]
],
"plugins": [
"external-helpers"
]
}
}
Expand Down
176 changes: 0 additions & 176 deletions coverage/clover.xml

This file was deleted.

Loading