Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6e5196c

Browse filesBrowse files
authored
Merge pull request actions#35 from actions/konradpabjan/ncc
Remove node modules and configure ncc
2 parents 28a6c1b + 4875b9e commit 6e5196c
Copy full SHA for 6e5196c

File tree

Expand file treeCollapse file tree

180 files changed

+5570
-13949
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

180 files changed

+5570
-13949
lines changed

‎.gitignore

Copy file name to clipboardExpand all lines: .gitignore
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
# Explicitly not ignoring node_modules so that they are included in package downloaded by runner
2-
!node_modules/
1+
# Ignore node_modules, ncc is used to compile nodejs modules into a single file in the releases branch
2+
node_modules/
33
__tests__/runner/*
44

5+
# Ignore js files that are transpiled from ts files in src/
6+
lib/
7+
58
# Rest of the file pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
69
# Logs
710
logs

‎action.yml

Copy file name to clipboardExpand all lines: action.yml
+4-1Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,7 @@ inputs:
1010
default: 'x64'
1111
runs:
1212
using: 'node12'
13-
main: 'lib/setup-python.js'
13+
main: 'dist/index.js'
14+
branding:
15+
icon: 'code'
16+
color: 'yellow'

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.