Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: abraham/reflection
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.0
Choose a base ref
...
head repository: abraham/reflection
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.12.0
Choose a head ref
  • 11 commits
  • 4 files changed
  • 3 contributors

Commits on Oct 5, 2022

  1. Merge pull request #727 from abraham/version

    0.11.0
    abraham authored Oct 5, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    dmathieu Damien Mathieu
    Copy the full SHA
    3531144 View commit details

Commits on Oct 9, 2022

  1. 1

    Verified

    This commit was signed with the committer’s verified signature.
    dmathieu Damien Mathieu
    Copy the full SHA
    7d9ba69 View commit details

Commits on Feb 1, 2023

  1. Bump rimraf from 3.0.2 to 4.1.2

    Bumps [rimraf](https://github.com/isaacs/rimraf) from 3.0.2 to 4.1.2.
    - [Release notes](https://github.com/isaacs/rimraf/releases)
    - [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
    - [Commits](isaacs/rimraf@v3.0.2...v4.1.2)
    
    ---
    updated-dependencies:
    - dependency-name: rimraf
      dependency-type: direct:development
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Feb 1, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dmathieu Damien Mathieu
    Copy the full SHA
    4e5dace View commit details
  2. Merge pull request #734 from abraham/dependabot/npm_and_yarn/rimraf-4…

    ….1.2
    
    Bump rimraf from 3.0.2 to 4.1.2
    abraham authored Feb 1, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dmathieu Damien Mathieu
    Copy the full SHA
    c53a3b9 View commit details

Commits on Feb 6, 2023

  1. npm run format

    abraham committed Feb 6, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dmathieu Damien Mathieu
    Copy the full SHA
    0ab5dec View commit details
  2. Merge pull request #728 from forehalo/main

    fix dual module types exporting
    abraham authored Feb 6, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dmathieu Damien Mathieu
    Copy the full SHA
    bed14d1 View commit details
  3. Rollup 3

    abraham committed Feb 6, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dmathieu Damien Mathieu
    Copy the full SHA
    9fa23e1 View commit details
  4. Run CI on push

    abraham committed Feb 6, 2023

    Partially verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    4e16b26 View commit details
  5. Merge pull request #736 from abraham/rollup

    Rollup 3
    abraham authored Feb 6, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    dmathieu Damien Mathieu
    Copy the full SHA
    f640c70 View commit details
  6. Merge pull request #737 from abraham/push

    Run CI on push
    abraham authored Feb 6, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    6188f38 View commit details
  7. 0.12.0

    abraham committed Feb 6, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    d314756 View commit details
Showing with 19 additions and 18 deletions.
  1. +5 −3 .github/workflows/index.yaml
  2. +6 −14 package.json
  3. +0 −1 rollup.config.js
  4. +8 −0 rollup.config.mjs
8 changes: 5 additions & 3 deletions .github/workflows/index.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: Index
on:
pull_request:
push:
branches:
- master

jobs:
test:
runs-on: ubuntu-latest
@@ -20,6 +18,10 @@ jobs:
- run: npm run lint
- run: npm run build
- run: npm run test
- name: module test
run: |
node --input-type=module --eval "import * as m from '@abraham/reflection'; console.log(m)"
node --input-type=commonjs --eval "const m = require('@abraham/reflection'); console.log(m)"
- run: npm run pkg-ok
- uses: coverallsapp/github-action@master
with:
20 changes: 6 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@abraham/reflection",
"version": "0.11.0",
"version": "0.12.0",
"description": "Lightweight ES Module implementation of reflect-metadata",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.umd.js"
"require": "./dist/index.umd.cjs"
},
"main": "./dist/index.umd.js",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
@@ -46,16 +46,16 @@
"homepage": "https://github.com/abraham/reflection#readme",
"devDependencies": {
"pkg-ok": "^3.0.0",
"@types/jest": "^29.1.1",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jest": "^27.0.0",
"jest": "^29.0.0",
"prettier": "^2.0.0",
"rimraf": "^3.0.0",
"rollup": "^2.0.0",
"rimraf": "^4.0.0",
"rollup": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^4.0.0"
},
@@ -77,14 +77,6 @@
"node"
]
},
"rollup": {
"input": "dist/index.js",
"output": {
"file": "dist/index.umd.js",
"format": "umd",
"name": "@abraham/reflection"
}
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
1 change: 0 additions & 1 deletion rollup.config.js

This file was deleted.

8 changes: 8 additions & 0 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export default {
input: 'dist/index.js',
output: {
file: 'dist/index.umd.cjs',
format: 'umd',
name: '@abraham/reflection',
},
};