Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Miscellaneous repo updates #371

Merged
merged 8 commits into from
Apr 1, 2024
Merged
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
8 changes: 8 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
extends: "@cerner/terra"
rules:
react/forbid-prop-types: off
overrides:
- files:
- "packages/**/jest/**/*"
rules:
import/no-extraneous-dependencies: off
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ runs:
run: npm run clean
- name: Install Dependencies
shell: bash
run: npm install
run: npm ci
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Run WDIO Tests for theme ${{ matrix.theme }}
env:
SITE: build/${{ matrix.theme }}
run: npm run wdio-${{ matrix.theme }}
run: npm run wdio:${{ matrix.theme }}

release-and-deploy:
runs-on: ubuntu-latest
Expand Down
72 changes: 15 additions & 57 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,62 +1,20 @@
# From https://github.com/github/gitignore
# - Node.gitignore
# - Ruby.gitignore
# - Sass.gitignore

*.bridgesupport
*.css.map
*.gem
# local-files
*.log
*.pid
*.pid.lock
*.rbc
*.seed
.dat*
.grunt
.lock-wscript
.node_repl_history
.npm
.nyc_output
.repl_history
.rvmrc
*.tgz
packages/**/package-lock.json

# local folders
.fleet
.idea
.vscode
.DS_Store
.sass-cache/
/.bundle/
/.config
/.yardoc/
/_yardoc/
/coverage/
/doc/
/InstalledFiles
/lib/bundler/man/
/pkg/
/rdoc/
/spec/examples.txt
/spec/reports/
/test/tmp/
/test/version_tmp/
/tmp/
/vendor/bundle
build-iPhoneOS/
build-iPhoneSimulator/
build/
build/Release
coverage
jspm_packages

# generated folders
aggregated-translations
generated-themes
lib
lib-cov
logs
node_modules
npm-debug.log*
pids
reports
target
**/wdio/**/__snapshots__/latest
**/wdio/**/__snapshots__/diff
**/wdio/**/__snapshots__/error
errorScreenshots
**/aggregated-translations/*.*
stats.json
aggregated-themes.js
package-lock.json
generated-themes
**/__snapshots__/latest
**/__snapshots__/error
**/__snapshots__/diff
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
package-lock=false
package-lock=true
legacy-peer-deps=true
2 changes: 0 additions & 2 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ module.exports = (api) => {

const plugins = [
'@babel/plugin-transform-object-assign',
'@babel/plugin-proposal-object-rest-spread',
'@babel/plugin-transform-async-to-generator',
'@babel/plugin-transform-runtime',
];

Expand Down
Loading
Loading