Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
7f1f4ba
Create codeql-analysis.yml
jlbmagic Dec 23, 2021
bb3ca94
Merge branch 'jlbmagic:main' into main
jlbmagic Dec 24, 2021
11ece4d
updates
jlbmagic Dec 24, 2021
980f46c
updated jsdev
jlbmagic Dec 31, 2021
b435bca
added bin
jlbmagic Dec 31, 2021
a797aeb
remove bin
jlbmagic Jan 17, 2022
ca98b75
updated parcel to dev
jlbmagic Jan 17, 2022
ae846e9
more cleanup
jlbmagic Jan 19, 2022
3630077
removed vunerable pkgs
jlbmagic Jan 19, 2022
e444492
refactored css to import
jlbmagic Jan 23, 2022
8146af0
updated FM file
jlbmagic Feb 10, 2022
d8f714f
Bump follow-redirects from 1.14.7 to 1.14.8
dependabot[bot] Feb 15, 2022
63003a9
removed prefix from HTML step
jlbmagic Feb 22, 2022
8923eee
Merge pull request #1 from integrating-magic/dependabot/npm_and_yarn/…
jlbmagic Feb 28, 2022
deaec7e
audit fix
jlbmagic Mar 30, 2022
d99a1e8
Merge branch 'main' of https://github.com/integrating-magic/js-dev-en…
jlbmagic Mar 30, 2022
b8fae82
updated lock file
jlbmagic Apr 19, 2022
66445c8
updated dev file
jlbmagic May 24, 2022
0eee15f
added linting and prettier
jlbmagic Jun 3, 2022
3c62d18
updated design of dev file
jlbmagic Jul 8, 2022
4dfcb97
updates
jlbmagic Jul 19, 2022
7a70b1d
fixed vunerabilities
jlbmagic Jul 22, 2022
a5d7975
added prettier rules
jlbmagic Aug 2, 2022
0c18d07
added buttons to dev file
jlbmagic Aug 2, 2022
6eede98
updated the name of the build/upload script
jlbmagic Oct 2, 2022
a92960c
updated audit
jlbmagic Dec 13, 2022
430db46
fixes
jlbmagic Dec 13, 2022
207a691
added a new function
jlbmagic Dec 13, 2022
8f9614e
updated parcel
jlbmagic Dec 22, 2022
c2bec1b
removed value lists
jlbmagic Dec 22, 2022
89357f3
audit fix
jlbmagic Jul 10, 2023
a3bd837
updated package
jlbmagic Jul 18, 2023
43b5756
added config file
jlbmagic Aug 23, 2023
e9e3c65
removed extra html records
jlbmagic Aug 24, 2023
caabaaf
updated fm file
jlbmagic Aug 25, 2023
29113df
updated FM file once more
jlbmagic Aug 25, 2023
b8e4130
removed FM record
jlbmagic Aug 27, 2023
723549b
removed yargs
jlbmagic Sep 9, 2023
fc03ee0
latest updates
jlbmagic Jan 11, 2024
67b5526
Updates to package, added scripting
jlbmagic Mar 3, 2024
f487a58
all latest updates
jlbmagic Apr 12, 2024
df10141
updated FM file
jlbmagic Apr 12, 2024
b822a25
added additional node scripts
jlbmagic Jul 16, 2024
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
Binary file added .DS_Store
Binary file not shown.
16 changes: 16 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ["eslint:recommended", "prettier"],
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
rules: {
"no-var": "warn",
"no-undef": "off",
"no-unused-vars": "warn",
},
};
70 changes: 70 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: '45 14 * * 5'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ node_modules
.vscode
dist
import.log
.parcel-cache
.parcel-cache
.DS_Store'
5 changes: 5 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
.vscode
dist
import.log
.parcel-cache
21 changes: 21 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false,
"parser": "babel"
}

3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
</head>
<body>
<h1>Alright. You're set.</h1>
<h2>Now build something amazing.</h2>
<h2 class="tintedBlackLeft">Now build something amazing!</h2>
<p>JS in FM is amazing</p>
<button type="button">Click Me!</button>

<script type="module">
Expand Down
Binary file modified jsDev.fmp12
Binary file not shown.
Loading