[READ-ONLY] Mirror of https://github.com/danielroe/node14-subpath.
0

Configure Feed

Select the types of activity you want to include in your feed.

first commit

author
Daniel Roe
date (Sep 4, 2021, 2:11 PM +0100) commit 61d295e4
+19
+3
index.mjs
··· 1 + import test from '#test-import' 2 + 3 + console.log(test())
+13
package.json
··· 1 + { 2 + "name": "node14-subpath", 3 + "version": "1.0.0", 4 + "main": "index.mjs", 5 + "type": "module", 6 + "license": "MIT", 7 + "imports": { 8 + "#test-import": "./test.mjs" 9 + }, 10 + "volta": { 11 + "node": "14.17.5" 12 + } 13 + }
+3
test.mjs
··· 1 + export default function test() { 2 + return 42 3 + }