Skip to content

Commit

Permalink
Merge pull request #75 from NASA-PDS/develop
Browse files Browse the repository at this point in the history
Merging `develop` branch to `main`
  • Loading branch information
anilnatha authored Nov 12, 2024
2 parents cdf4fe1 + e439587 commit 5c79d08
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 10 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/publish-to-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
jobs:
publish-to-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -23,7 +26,7 @@ jobs:
- name: Build CSS
run: npm run build:css
- name: Publish
run: npm publish
run: npm publish --verbose --provenance --access public
continue-on-error: true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_COM_TOKEN }}
14 changes: 14 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
.DS_Store
.editorconfig
.envrc
.git
.github
.gitignore
.nvmrc
.prettierignore
.prettierrc
.stylelintrc.json
Makefile
README.md
SECURITY.md
example
node_modules
tests
17 changes: 11 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NASA-PDS/wds.git"
"url": "git+https://github.com/NASA-PDS/wds.git"
},
"scripts": {
"build:css": "rm -rf css && sass scss:css",
"build:icons": "node scripts/build-icons.js",
"lint": "stylelint scss/**/*.scss --fix"
},
"devDependencies": {
"sass": "^1.80.1",
"sass": "^1.80.6",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4"
Expand Down

0 comments on commit 5c79d08

Please sign in to comment.